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 13ed05982e..624920ddbd 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 13ed05982efc95c077efc3b9609688554e3a854c +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/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/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/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/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 f01b603028..50c3840ea4 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Tue Jan 30 14:01:31 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_32208/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 = 285.312637 - 0: The maximum resident set size (KB) = 1306388 + 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_32208/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 = 918.815407 - 0: The maximum resident set size (KB) = 1293976 + 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_32208/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 = 250.037227 - 0: The maximum resident set size (KB) = 1285148 + 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_32208/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.414161 - 0: The maximum resident set size (KB) = 1282268 + 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_32208/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 = 247.902008 - 0: The maximum resident set size (KB) = 1281340 + 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_32208/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 = 254.021931 - 0: The maximum resident set size (KB) = 1285592 + 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_32208/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 = 245.447665 - 0: The maximum resident set size (KB) = 1285448 + 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 -Tue Jan 30 15:10:10 UTC 2024 -Elapsed time: 01h:08m:40s. 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 659aff8ff9..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 @@ -Tue Jan 30 16:15:55 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_38780/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 = 1210.482711 - 0: The maximum resident set size (KB) = 1406168 + 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_38780/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 = 378.582612 - 0: The maximum resident set size (KB) = 1403184 + 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_38780/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 = 375.362181 - 0: The maximum resident set size (KB) = 1402808 + 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 -Tue Jan 30 17:25:03 UTC 2024 -Elapsed time: 01h:09m:09s. 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 0a90c24f47..1cd548a1e2 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Tue Jan 30 15:37:20 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_164234/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 = 522.592279 - 0: The maximum resident set size (KB) = 588712 + 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_164234/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 = 514.782210 - 0: The maximum resident set size (KB) = 588100 + 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_164234/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 = 521.372608 - 0: The maximum resident set size (KB) = 588836 + 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 -Tue Jan 30 16:13:55 UTC 2024 -Elapsed time: 00h:36m:36s. 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 fdb40fac3a..4a1a537e4f 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,59 +1,60 @@ -Tue Jan 30 18:47:25 UTC 2024 +Thu Feb 8 12:11:33 UTC 2024 Start Regression test -Testing UFSWM Hash: a95b434e72561cbed7af9e9283541df33218b9bd +Testing UFSWM Hash: ae9936af3eff7c094a5425533092632507335184 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 13ed05982efc95c077efc3b9609688554e3a854c CMEPS-interface/CMEPS (cmeps_v0.4.1-2302-g13ed059) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 400e2129e147212ae2820368a8e0de6fd2492b36 FV3 (remotes/origin/nssl_mp_init) + 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 494 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 479 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 228 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_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 533 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 494 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 548 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 494 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 498 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 474 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 516 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 511 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 514 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 192 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 533 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 525 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 173 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 588 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 466 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 168 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 472 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 501 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 530 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 586 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 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 932 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 877 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 637 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 608 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -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 921 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 164 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 460 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 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-20240126/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14935/cpld_control_p8_mixedmode_intel +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 @@ -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 = 322.055780 -The maximum resident set size (KB) = 2977760 +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_14935/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 @@ -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 = 901.485229 -The maximum resident set size (KB) = 1595632 +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_14935/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 @@ -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 = 963.491201 -The maximum resident set size (KB) = 1716064 +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_14935/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 @@ -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 = 446.122205 -The maximum resident set size (KB) = 850808 +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_14935/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 @@ -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 = 1050.093651 -The maximum resident set size (KB) = 1570468 +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_14935/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 @@ -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 = 1407.484472 -The maximum resident set size (KB) = 1608604 +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_14935/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 @@ -504,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.518767 -The maximum resident set size (KB) = 3002340 +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_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14935/cpld_restart_p8_intel -Checking test 008 cpld_restart_p8_intel results .... +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 + 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.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-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 Comparing sfcf024.tile3.nc .........OK @@ -564,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 = 212.690836 -The maximum resident set size (KB) = 3057844 +The total amount of wall time = 213.283078 +The maximum resident set size (KB) = 3058252 -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_14935/cpld_control_qr_p8_intel -Checking test 009 cpld_control_qr_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -636,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 = 363.611428 -The maximum resident set size (KB) = 3024692 +The total amount of wall time = 365.896427 +The maximum resident set size (KB) = 3026668 -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_14935/cpld_restart_qr_p8_intel -Checking test 010 cpld_restart_qr_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -696,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 = 215.922101 -The maximum resident set size (KB) = 3079672 +The total amount of wall time = 217.069512 +The maximum resident set size (KB) = 3079264 -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_14935/cpld_2threads_p8_intel -Checking test 011 cpld_2threads_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -756,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 = 322.929938 -The maximum resident set size (KB) = 3308768 +The total amount of wall time = 323.289607 +The maximum resident set size (KB) = 3313068 -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_14935/cpld_decomp_p8_intel -Checking test 012 cpld_decomp_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -816,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 = 356.786513 -The maximum resident set size (KB) = 2999712 +The total amount of wall time = 357.730839 +The maximum resident set size (KB) = 2995164 -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_14935/cpld_mpi_p8_intel -Checking test 013 cpld_mpi_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -876,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 = 303.062989 -The maximum resident set size (KB) = 2921412 +The total amount of wall time = 300.218678 +The maximum resident set size (KB) = 2925712 -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_14935/cpld_control_ciceC_p8_intel -Checking test 014 cpld_control_ciceC_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -948,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 = 362.204352 -The maximum resident set size (KB) = 2997776 +The total amount of wall time = 364.462067 +The maximum resident set size (KB) = 3000584 -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_14935/cpld_s2sa_p8_intel -Checking test 015 cpld_s2sa_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -1006,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.075127 -The maximum resident set size (KB) = 2962644 +The total amount of wall time = 342.692238 +The maximum resident set size (KB) = 2966420 -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_14935/cpld_control_noaero_p8_intel -Checking test 016 cpld_control_noaero_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1077,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 = 268.744036 -The maximum resident set size (KB) = 1597780 +The total amount of wall time = 269.362524 +The maximum resident set size (KB) = 1588368 -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_14935/cpld_control_nowave_noaero_p8_intel -Checking test 017 cpld_control_nowave_noaero_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1146,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.965670 -The maximum resident set size (KB) = 1639336 +The total amount of wall time = 273.708208 +The maximum resident set size (KB) = 1639808 -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_14935/cpld_control_noaero_p8_agrid_intel -Checking test 018 cpld_control_noaero_p8_agrid_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1215,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 = 276.145158 -The maximum resident set size (KB) = 1643204 +The total amount of wall time = 276.517542 +The maximum resident set size (KB) = 1635132 -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_14935/cpld_control_c48_intel -Checking test 019 cpld_control_c48_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -1272,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 = 406.300272 -The maximum resident set size (KB) = 2662248 +The total amount of wall time = 406.771645 +The maximum resident set size (KB) = 2660260 -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_14935/cpld_control_p8_faster_intel -Checking test 020 cpld_control_p8_faster_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1344,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 = 355.634565 -The maximum resident set size (KB) = 3001408 +The total amount of wall time = 355.478873 +The maximum resident set size (KB) = 3001988 -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_14935/cpld_control_pdlib_p8_intel -Checking test 021 cpld_control_pdlib_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1415,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 = 915.808225 -The maximum resident set size (KB) = 1606448 +The total amount of wall time = 919.139744 +The maximum resident set size (KB) = 1609776 -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_14935/cpld_restart_pdlib_p8_intel -Checking test 022 cpld_restart_pdlib_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -1474,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 = 450.413749 -The maximum resident set size (KB) = 902828 +The total amount of wall time = 455.281404 +The maximum resident set size (KB) = 908976 -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_14935/cpld_mpi_pdlib_p8_intel -Checking test 023 cpld_mpi_pdlib_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1545,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 = 1063.936127 -The maximum resident set size (KB) = 1585440 +The total amount of wall time = 1064.929281 +The maximum resident set size (KB) = 1593800 -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_14935/cpld_debug_pdlib_p8_intel -Checking test 024 cpld_debug_pdlib_p8_intel results .... +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 Comparing sfcf003.tile3.nc .........OK @@ -1604,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 = 1482.593003 -The maximum resident set size (KB) = 1616936 +The total amount of wall time = 1499.100932 +The maximum resident set size (KB) = 1610892 -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_14935/control_flake_intel -Checking test 025 control_flake_intel results .... +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 Comparing atmf000.nc .........OK @@ -1622,15 +1695,15 @@ Checking test 025 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 211.118943 -The maximum resident set size (KB) = 578568 +The total amount of wall time = 212.378864 +The maximum resident set size (KB) = 580296 -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_14935/control_CubedSphereGrid_intel -Checking test 026 control_CubedSphereGrid_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -1656,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 = 129.954572 -The maximum resident set size (KB) = 528100 +The total amount of wall time = 130.453285 +The maximum resident set size (KB) = 530040 -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_14935/control_CubedSphereGrid_parallel_intel -Checking test 027 control_CubedSphereGrid_parallel_intel results .... +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 Comparing atmf000.nc .........OK @@ -1678,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 = 134.776898 -The maximum resident set size (KB) = 535268 +The total amount of wall time = 137.220507 +The maximum resident set size (KB) = 535736 -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_14935/control_latlon_intel -Checking test 028 control_latlon_intel results .... +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 Comparing atmf000.nc .........OK @@ -1696,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.466254 -The maximum resident set size (KB) = 529704 +The total amount of wall time = 132.066392 +The maximum resident set size (KB) = 529512 -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_14935/control_wrtGauss_netcdf_parallel_intel -Checking test 029 control_wrtGauss_netcdf_parallel_intel results .... +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 Comparing atmf000.nc .........OK @@ -1714,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.341047 -The maximum resident set size (KB) = 528428 +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-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 + 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 = 330.440419 +The maximum resident set size (KB) = 721588 -Test 029 control_wrtGauss_netcdf_parallel_intel PASS +Test 031 control_c48_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_14935/control_c48_intel -Checking test 030 control_c48_intel results .... +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 Comparing atmf000.nc .........OK @@ -1760,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 = 325.694833 -The maximum resident set size (KB) = 724496 +The total amount of wall time = 328.756213 +The maximum resident set size (KB) = 721768 -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_14935/control_c192_intel -Checking test 031 control_c192_intel results .... +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 Comparing atmf000.nc .........OK @@ -1778,15 +1897,15 @@ Checking test 031 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 526.025263 -The maximum resident set size (KB) = 651000 +The total amount of wall time = 525.577716 +The maximum resident set size (KB) = 644504 -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_14935/control_c384_intel -Checking test 032 control_c384_intel results .... +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 Comparing atmf000.nc .........OK @@ -1796,15 +1915,15 @@ Checking test 032 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 577.281188 -The maximum resident set size (KB) = 964200 +The total amount of wall time = 580.108798 +The maximum resident set size (KB) = 959496 -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_14935/control_c384gdas_intel -Checking test 033 control_c384gdas_intel results .... +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 Comparing atmf000.nc .........OK @@ -1846,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 = 508.091276 -The maximum resident set size (KB) = 1098360 +The total amount of wall time = 511.625560 +The maximum resident set size (KB) = 1097996 -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_14935/control_stochy_intel -Checking test 034 control_stochy_intel results .... +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 Comparing atmf000.nc .........OK @@ -1864,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.646961 -The maximum resident set size (KB) = 534464 +The total amount of wall time = 88.399486 +The maximum resident set size (KB) = 534596 -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_14935/control_stochy_restart_intel -Checking test 035 control_stochy_restart_intel results .... +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.771424 -The maximum resident set size (KB) = 338904 +The total amount of wall time = 49.297610 +The maximum resident set size (KB) = 338920 -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_14935/control_lndp_intel -Checking test 036 control_lndp_intel results .... +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 Comparing atmf000.nc .........OK @@ -1896,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.135966 -The maximum resident set size (KB) = 536692 +The total amount of wall time = 84.662009 +The maximum resident set size (KB) = 535128 -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_14935/control_iovr4_intel -Checking test 037 control_iovr4_intel results .... +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 Comparing sfcf024.nc .........OK @@ -1918,15 +2037,15 @@ Checking test 037 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.684591 -The maximum resident set size (KB) = 531548 +The total amount of wall time = 131.910171 +The maximum resident set size (KB) = 529464 -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_14935/control_iovr5_intel -Checking test 038 control_iovr5_intel results .... +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 Comparing sfcf024.nc .........OK @@ -1940,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.823261 -The maximum resident set size (KB) = 530496 +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-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 + 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 = 163.127863 +The maximum resident set size (KB) = 1513748 -Test 038 control_iovr5_intel PASS +Test 041 control_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_14935/control_p8_intel -Checking test 039 control_p8_intel results .... +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 Comparing sfcf024.nc .........OK @@ -1994,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 = 161.548176 -The maximum resident set size (KB) = 1514548 +The total amount of wall time = 161.411420 +The maximum resident set size (KB) = 1509616 -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_14935/control_p8_ugwpv1_intel -Checking test 040 control_p8_ugwpv1_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2048,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 = 159.212457 -The maximum resident set size (KB) = 1513128 +The total amount of wall time = 159.523179 +The maximum resident set size (KB) = 1513580 -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_14935/control_restart_p8_intel -Checking test 041 control_restart_p8_intel results .... +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 Comparing GFSFLX.GrbF24 .........OK @@ -2094,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.494665 -The maximum resident set size (KB) = 700744 +The total amount of wall time = 89.174390 +The maximum resident set size (KB) = 700544 -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_14935/control_noqr_p8_intel -Checking test 042 control_noqr_p8_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2148,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 = 161.565235 -The maximum resident set size (KB) = 1502160 +The total amount of wall time = 163.123791 +The maximum resident set size (KB) = 1500584 -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_14935/control_restart_noqr_p8_intel -Checking test 043 control_restart_noqr_p8_intel results .... +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 Comparing GFSFLX.GrbF24 .........OK @@ -2194,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.490651 -The maximum resident set size (KB) = 703692 +The total amount of wall time = 89.273198 +The maximum resident set size (KB) = 703852 -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_14935/control_decomp_p8_intel -Checking test 044 control_decomp_p8_intel results .... +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 Comparing atmf000.nc .........OK @@ -2244,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.768768 -The maximum resident set size (KB) = 1505156 +The total amount of wall time = 167.638993 +The maximum resident set size (KB) = 1504216 -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_14935/control_2threads_p8_intel -Checking test 045 control_2threads_p8_intel results .... +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 Comparing atmf000.nc .........OK @@ -2294,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 = 143.103908 -The maximum resident set size (KB) = 1589272 +The total amount of wall time = 143.361942 +The maximum resident set size (KB) = 1600508 -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_14935/control_p8_lndp_intel -Checking test 046 control_p8_lndp_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2320,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 = 291.893739 -The maximum resident set size (KB) = 1516488 +The total amount of wall time = 292.116016 +The maximum resident set size (KB) = 1507376 -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_14935/control_p8_rrtmgp_intel -Checking test 047 control_p8_rrtmgp_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2374,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.832156 -The maximum resident set size (KB) = 1570712 +The total amount of wall time = 217.670222 +The maximum resident set size (KB) = 1570332 -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_14935/control_p8_mynn_intel -Checking test 048 control_p8_mynn_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2428,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 = 164.279035 -The maximum resident set size (KB) = 1522664 +The total amount of wall time = 164.860094 +The maximum resident set size (KB) = 1515880 -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_14935/merra2_thompson_intel -Checking test 049 merra2_thompson_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2482,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.400110 -The maximum resident set size (KB) = 1512540 +The total amount of wall time = 196.736246 +The maximum resident set size (KB) = 1515464 -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_14935/regional_control_intel -Checking test 050 regional_control_intel results .... +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 Comparing phyf000.nc .........OK @@ -2500,29 +2673,29 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 284.963769 -The maximum resident set size (KB) = 614468 +The total amount of wall time = 284.618520 +The maximum resident set size (KB) = 615952 -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_14935/regional_restart_intel -Checking test 051 regional_restart_intel results .... +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 = 150.954411 -The maximum resident set size (KB) = 786772 +The total amount of wall time = 152.919739 +The maximum resident set size (KB) = 786260 -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_14935/regional_decomp_intel -Checking test 052 regional_decomp_intel results .... +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 Comparing phyf000.nc .........OK @@ -2532,15 +2705,15 @@ Checking test 052 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 296.734893 -The maximum resident set size (KB) = 613424 +The total amount of wall time = 297.844147 +The maximum resident set size (KB) = 612216 -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_14935/regional_2threads_intel -Checking test 053 regional_2threads_intel results .... +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 Comparing phyf000.nc .........OK @@ -2550,30 +2723,30 @@ Checking test 053 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 169.362308 -The maximum resident set size (KB) = 668940 +The total amount of wall time = 169.237858 +The maximum resident set size (KB) = 666624 -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_14935/regional_noquilt_intel -Checking test 054 regional_noquilt_intel results .... +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 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 = 278.570556 -The maximum resident set size (KB) = 1144864 +The total amount of wall time = 279.879265 +The maximum resident set size (KB) = 1146092 -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_14935/regional_2dwrtdecomp_intel -Checking test 055 regional_2dwrtdecomp_intel results .... +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 Comparing phyf000.nc .........OK @@ -2583,15 +2756,15 @@ Checking test 055 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 283.096867 -The maximum resident set size (KB) = 614732 +The total amount of wall time = 283.735880 +The maximum resident set size (KB) = 616188 -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_14935/regional_wofs_intel -Checking test 056 regional_wofs_intel results .... +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 Comparing phyf000.nc .........OK @@ -2601,15 +2774,15 @@ Checking test 056 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 364.154172 -The maximum resident set size (KB) = 1589872 +The total amount of wall time = 367.222732 +The maximum resident set size (KB) = 1586860 -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_14935/regional_ifi_control_intel -Checking test 057 regional_ifi_control_intel results .... +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 Comparing phyf000.nc .........OK @@ -2619,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.986142 -The maximum resident set size (KB) = 610396 +The total amount of wall time = 313.897341 +The maximum resident set size (KB) = 611380 -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_14935/regional_ifi_decomp_intel -Checking test 058 regional_ifi_decomp_intel results .... +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 Comparing phyf000.nc .........OK @@ -2637,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 = 326.354780 -The maximum resident set size (KB) = 609012 +The total amount of wall time = 329.597396 +The maximum resident set size (KB) = 610164 -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_14935/regional_ifi_2threads_intel -Checking test 059 regional_ifi_2threads_intel results .... +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 Comparing phyf000.nc .........OK @@ -2655,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 = 189.346374 -The maximum resident set size (KB) = 663448 +The total amount of wall time = 189.873742 +The maximum resident set size (KB) = 665628 -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_14935/rap_control_intel -Checking test 060 rap_control_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2709,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 = 405.857695 -The maximum resident set size (KB) = 914876 +The total amount of wall time = 405.151485 +The maximum resident set size (KB) = 915444 -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_14935/regional_spp_sppt_shum_skeb_intel -Checking test 061 regional_spp_sppt_shum_skeb_intel results .... +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 Comparing phyf000.nc .........OK @@ -2727,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 = 237.178785 -The maximum resident set size (KB) = 1099576 +The total amount of wall time = 237.229443 +The maximum resident set size (KB) = 1102636 -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_14935/rap_decomp_intel -Checking test 062 rap_decomp_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2781,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.859273 -The maximum resident set size (KB) = 917748 +The total amount of wall time = 418.716547 +The maximum resident set size (KB) = 917800 -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_14935/rap_2threads_intel -Checking test 063 rap_2threads_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2835,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 = 368.986484 -The maximum resident set size (KB) = 999820 +The total amount of wall time = 368.284763 +The maximum resident set size (KB) = 1003168 -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_14935/rap_restart_intel -Checking test 064 rap_restart_intel results .... +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 Comparing GFSFLX.GrbF24 .........OK @@ -2881,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.189763 -The maximum resident set size (KB) = 787460 +The total amount of wall time = 207.013809 +The maximum resident set size (KB) = 788596 -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_14935/rap_sfcdiff_intel -Checking test 065 rap_sfcdiff_intel results .... +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 Comparing sfcf012.nc .........OK @@ -2935,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 = 402.374671 -The maximum resident set size (KB) = 915272 +The total amount of wall time = 403.998872 +The maximum resident set size (KB) = 914680 -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_14935/rap_sfcdiff_decomp_intel -Checking test 066 rap_sfcdiff_decomp_intel results .... +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 Comparing sfcf012.nc .........OK @@ -2989,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 = 419.809197 -The maximum resident set size (KB) = 914600 +The total amount of wall time = 420.999979 +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_14935/rap_sfcdiff_restart_intel -Checking test 067 rap_sfcdiff_restart_intel results .... +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 Comparing GFSFLX.GrbF12 .........OK @@ -3035,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 = 301.380891 -The maximum resident set size (KB) = 788012 +The total amount of wall time = 302.149392 +The maximum resident set size (KB) = 784768 -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_14935/hrrr_control_intel -Checking test 068 hrrr_control_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3089,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.411249 -The maximum resident set size (KB) = 908420 +The total amount of wall time = 205.964835 +The maximum resident set size (KB) = 908472 -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_14935/hrrr_control_decomp_intel -Checking test 069 hrrr_control_decomp_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3143,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.590420 -The maximum resident set size (KB) = 907320 +The total amount of wall time = 212.426246 +The maximum resident set size (KB) = 912084 -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_14935/hrrr_control_2threads_intel -Checking test 070 hrrr_control_2threads_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3197,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.972379 -The maximum resident set size (KB) = 991428 +The total amount of wall time = 185.434840 +The maximum resident set size (KB) = 990576 -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_14935/hrrr_control_restart_intel -Checking test 071 hrrr_control_restart_intel results .... +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.232659 -The maximum resident set size (KB) = 739824 +The total amount of wall time = 108.946088 +The maximum resident set size (KB) = 740732 -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_14935/rrfs_v1beta_intel -Checking test 072 rrfs_v1beta_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3265,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 = 395.939583 -The maximum resident set size (KB) = 909540 +The total amount of wall time = 395.551368 +The maximum resident set size (KB) = 910124 -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_14935/rrfs_v1nssl_intel -Checking test 073 rrfs_v1nssl_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3287,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.679703 -The maximum resident set size (KB) = 1874068 +The total amount of wall time = 483.321182 +The maximum resident set size (KB) = 1871576 -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_14935/rrfs_v1nssl_nohailnoccn_intel -Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3309,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.764523 -The maximum resident set size (KB) = 1856700 +The total amount of wall time = 467.602453 +The maximum resident set size (KB) = 1859568 -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_14935/control_csawmg_intel -Checking test 075 control_csawmg_intel results .... +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 Comparing atmf000.nc .........OK @@ -3327,15 +3500,15 @@ Checking test 075 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 335.657955 -The maximum resident set size (KB) = 602516 +The total amount of wall time = 334.594469 +The maximum resident set size (KB) = 602656 -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_14935/control_csawmgt_intel -Checking test 076 control_csawmgt_intel results .... +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 Comparing atmf000.nc .........OK @@ -3345,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.299652 -The maximum resident set size (KB) = 602532 +The total amount of wall time = 333.460693 +The maximum resident set size (KB) = 600960 -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_14935/control_wam_intel -Checking test 077 control_wam_intel results .... +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 = 118.740038 -The maximum resident set size (KB) = 275580 +The total amount of wall time = 118.642945 +The maximum resident set size (KB) = 276388 -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_14935/control_p8_faster_intel -Checking test 078 control_p8_faster_intel results .... +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 Comparing sfcf024.nc .........OK @@ -3411,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 = 156.778061 -The maximum resident set size (KB) = 1498848 +The total amount of wall time = 157.687504 +The maximum resident set size (KB) = 1503432 -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_14935/regional_control_faster_intel -Checking test 079 regional_control_faster_intel results .... +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 Comparing phyf000.nc .........OK @@ -3429,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.686187 -The maximum resident set size (KB) = 608304 +The total amount of wall time = 269.069375 +The maximum resident set size (KB) = 608996 -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_14935/control_CubedSphereGrid_debug_intel -Checking test 080 control_CubedSphereGrid_debug_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -3463,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 = 159.745475 -The maximum resident set size (KB) = 687300 +The total amount of wall time = 159.302618 +The maximum resident set size (KB) = 685036 -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_14935/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 081 control_wrtGauss_netcdf_parallel_debug_intel results .... +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 = 157.131604 -The maximum resident set size (KB) = 690692 +The total amount of wall time = 157.786515 +The maximum resident set size (KB) = 690556 -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_14935/control_stochy_debug_intel -Checking test 082 control_stochy_debug_intel results .... +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 = 178.918874 -The maximum resident set size (KB) = 692832 +The total amount of wall time = 179.174032 +The maximum resident set size (KB) = 688196 -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_14935/control_lndp_debug_intel -Checking test 083 control_lndp_debug_intel results .... +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.952559 -The maximum resident set size (KB) = 694360 +The total amount of wall time = 160.817218 +The maximum resident set size (KB) = 690072 -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_14935/control_csawmg_debug_intel -Checking test 084 control_csawmg_debug_intel results .... +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 = 249.477513 -The maximum resident set size (KB) = 732936 +The total amount of wall time = 251.849095 +The maximum resident set size (KB) = 730176 -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_14935/control_csawmgt_debug_intel -Checking test 085 control_csawmgt_debug_intel results .... +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 = 246.722190 -The maximum resident set size (KB) = 732948 +The total amount of wall time = 248.289400 +The maximum resident set size (KB) = 728100 -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_14935/control_ras_debug_intel -Checking test 086 control_ras_debug_intel results .... +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 = 161.970634 -The maximum resident set size (KB) = 701624 +The total amount of wall time = 162.459170 +The maximum resident set size (KB) = 701080 -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_14935/control_diag_debug_intel -Checking test 087 control_diag_debug_intel results .... +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 = 162.454180 -The maximum resident set size (KB) = 751064 +The total amount of wall time = 163.029933 +The maximum resident set size (KB) = 748684 -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_14935/control_debug_p8_intel -Checking test 088 control_debug_p8_intel results .... +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 = 164.850187 -The maximum resident set size (KB) = 1521636 +The total amount of wall time = 166.543819 +The maximum resident set size (KB) = 1518276 -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_14935/regional_debug_intel -Checking test 089 regional_debug_intel results .... +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 = 1046.266663 -The maximum resident set size (KB) = 632564 +The total amount of wall time = 1045.877702 +The maximum resident set size (KB) = 628504 -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_14935/rap_control_debug_intel -Checking test 090 rap_control_debug_intel results .... +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 = 298.568748 -The maximum resident set size (KB) = 1078520 +The total amount of wall time = 298.385685 +The maximum resident set size (KB) = 1073504 -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_14935/hrrr_control_debug_intel -Checking test 091 hrrr_control_debug_intel results .... +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 = 295.677549 -The maximum resident set size (KB) = 1071992 +The total amount of wall time = 291.164904 +The maximum resident set size (KB) = 1069160 -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_14935/hrrr_gf_debug_intel -Checking test 092 hrrr_gf_debug_intel results .... +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 = 298.139501 -The maximum resident set size (KB) = 1079904 +The total amount of wall time = 298.009429 +The maximum resident set size (KB) = 1075828 -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_14935/hrrr_c3_debug_intel -Checking test 093 hrrr_c3_debug_intel results .... +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.411246 -The maximum resident set size (KB) = 1071732 +The total amount of wall time = 298.810459 +The maximum resident set size (KB) = 1076872 -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_14935/rap_unified_drag_suite_debug_intel -Checking test 094 rap_unified_drag_suite_debug_intel results .... +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.095675 -The maximum resident set size (KB) = 1078936 +The total amount of wall time = 301.461430 +The maximum resident set size (KB) = 1075804 -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_14935/rap_diag_debug_intel -Checking test 095 rap_diag_debug_intel results .... +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 = 309.613946 -The maximum resident set size (KB) = 1160180 +The total amount of wall time = 309.369655 +The maximum resident set size (KB) = 1158724 -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_14935/rap_cires_ugwp_debug_intel -Checking test 096 rap_cires_ugwp_debug_intel results .... +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 = 305.657564 -The maximum resident set size (KB) = 1073976 +The total amount of wall time = 305.187340 +The maximum resident set size (KB) = 1074300 -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_14935/rap_unified_ugwp_debug_intel -Checking test 097 rap_unified_ugwp_debug_intel results .... +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.388955 -The maximum resident set size (KB) = 1077776 +The total amount of wall time = 306.506140 +The maximum resident set size (KB) = 1072284 -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_14935/rap_lndp_debug_intel -Checking test 098 rap_lndp_debug_intel results .... +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.549565 -The maximum resident set size (KB) = 1075732 +The total amount of wall time = 301.396932 +The maximum resident set size (KB) = 1076452 -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_14935/rap_progcld_thompson_debug_intel -Checking test 099 rap_progcld_thompson_debug_intel results .... +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 = 298.951002 -The maximum resident set size (KB) = 1077652 +The total amount of wall time = 300.069111 +The maximum resident set size (KB) = 1075048 -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_14935/rap_noah_debug_intel -Checking test 100 rap_noah_debug_intel results .... +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.407721 -The maximum resident set size (KB) = 1077060 +The total amount of wall time = 292.773366 +The maximum resident set size (KB) = 1076524 -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_14935/rap_sfcdiff_debug_intel -Checking test 101 rap_sfcdiff_debug_intel results .... +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 = 302.183015 -The maximum resident set size (KB) = 1076596 +The total amount of wall time = 299.191676 +The maximum resident set size (KB) = 1070628 -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_14935/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +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 = 491.044339 -The maximum resident set size (KB) = 1077748 +The total amount of wall time = 489.469552 +The maximum resident set size (KB) = 1073948 -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_14935/rrfs_v1beta_debug_intel -Checking test 103 rrfs_v1beta_debug_intel results .... +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.412957 -The maximum resident set size (KB) = 1069192 +The total amount of wall time = 294.456047 +The maximum resident set size (KB) = 1069328 -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_14935/rap_clm_lake_debug_intel -Checking test 104 rap_clm_lake_debug_intel results .... +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 = 350.860873 -The maximum resident set size (KB) = 1078148 +The total amount of wall time = 348.935150 +The maximum resident set size (KB) = 1074940 -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_14935/rap_flake_debug_intel -Checking test 105 rap_flake_debug_intel results .... +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 = 300.713328 -The maximum resident set size (KB) = 1074464 +The total amount of wall time = 299.459310 +The maximum resident set size (KB) = 1074844 -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_14935/gnv1_c96_no_nest_debug_intel -Checking test 106 gnv1_c96_no_nest_debug_intel results .... +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 Comparing sfcf002.nc .........OK @@ -3861,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.849469 -The maximum resident set size (KB) = 1079144 +The total amount of wall time = 522.581705 +The maximum resident set size (KB) = 1080220 -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_14935/control_wam_debug_intel -Checking test 107 control_wam_debug_intel results .... +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 = 297.520596 -The maximum resident set size (KB) = 300004 +The total amount of wall time = 297.055782 +The maximum resident set size (KB) = 298720 -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_14935/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +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 Comparing phyf000.nc .........OK @@ -3891,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 = 224.038626 -The maximum resident set size (KB) = 959244 +The total amount of wall time = 226.625120 +The maximum resident set size (KB) = 960224 -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_14935/rap_control_dyn32_phy32_intel -Checking test 109 rap_control_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3945,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 = 332.920609 -The maximum resident set size (KB) = 794144 +The total amount of wall time = 334.270880 +The maximum resident set size (KB) = 795488 -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_14935/hrrr_control_dyn32_phy32_intel -Checking test 110 hrrr_control_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3999,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 = 174.435066 -The maximum resident set size (KB) = 790576 +The total amount of wall time = 175.175636 +The maximum resident set size (KB) = 788112 -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_14935/rap_2threads_dyn32_phy32_intel -Checking test 111 rap_2threads_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4053,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 = 306.192407 -The maximum resident set size (KB) = 856264 +The total amount of wall time = 306.550756 +The maximum resident set size (KB) = 856392 -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_14935/hrrr_control_2threads_dyn32_phy32_intel -Checking test 112 hrrr_control_2threads_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4107,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 = 158.774561 -The maximum resident set size (KB) = 843432 +The total amount of wall time = 159.688862 +The maximum resident set size (KB) = 844952 -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_14935/hrrr_control_decomp_dyn32_phy32_intel -Checking test 113 hrrr_control_decomp_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4161,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 = 182.311754 -The maximum resident set size (KB) = 792060 +The total amount of wall time = 181.850283 +The maximum resident set size (KB) = 791632 -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_14935/rap_restart_dyn32_phy32_intel -Checking test 114 rap_restart_dyn32_phy32_intel results .... +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 Comparing GFSFLX.GrbF12 .........OK @@ -4207,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 = 248.751013 -The maximum resident set size (KB) = 692220 +The total amount of wall time = 249.939585 +The maximum resident set size (KB) = 690980 -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_14935/hrrr_control_restart_dyn32_phy32_intel -Checking test 115 hrrr_control_restart_dyn32_phy32_intel results .... +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.318559 -The maximum resident set size (KB) = 674792 +The total amount of wall time = 93.299960 +The maximum resident set size (KB) = 673660 -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_14935/conus13km_control_intel -Checking test 116 conus13km_control_intel results .... +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 Comparing sfcf002.nc .........OK @@ -4244,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 = 114.594388 -The maximum resident set size (KB) = 1005908 +The total amount of wall time = 115.789816 +The maximum resident set size (KB) = 1006692 -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_14935/conus13km_2threads_intel -Checking test 117 conus13km_2threads_intel results .... +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.286326 -The maximum resident set size (KB) = 1009116 +The total amount of wall time = 57.663096 +The maximum resident set size (KB) = 1005620 -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_14935/conus13km_restart_mismatch_intel -Checking test 118 conus13km_restart_mismatch_intel results .... +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 = 69.835898 -The maximum resident set size (KB) = 882552 +The total amount of wall time = 69.157185 +The maximum resident set size (KB) = 884248 -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_14935/rap_control_dyn64_phy32_intel -Checking test 119 rap_control_dyn64_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4324,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.876042 -The maximum resident set size (KB) = 819068 +The total amount of wall time = 227.808235 +The maximum resident set size (KB) = 819796 -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_14935/rap_control_debug_dyn32_phy32_intel -Checking test 120 rap_control_debug_dyn32_phy32_intel results .... +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 = 293.178344 -The maximum resident set size (KB) = 952972 +The total amount of wall time = 292.424539 +The maximum resident set size (KB) = 956660 -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_14935/hrrr_control_debug_dyn32_phy32_intel -Checking test 121 hrrr_control_debug_dyn32_phy32_intel results .... +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 = 285.422823 -The maximum resident set size (KB) = 948228 +The total amount of wall time = 285.346478 +The maximum resident set size (KB) = 955928 -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_14935/conus13km_debug_intel -Checking test 122 conus13km_debug_intel results .... +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 Comparing atmf000.nc .........OK @@ -4373,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 = 882.388998 -The maximum resident set size (KB) = 1036680 +The total amount of wall time = 897.018552 +The maximum resident set size (KB) = 1041768 -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_14935/conus13km_debug_qr_intel -Checking test 123 conus13km_debug_qr_intel results .... +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 Comparing atmf000.nc .........OK @@ -4394,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 = 888.957476 -The maximum resident set size (KB) = 707092 +The total amount of wall time = 900.985766 +The maximum resident set size (KB) = 711008 -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_14935/conus13km_debug_2threads_intel -Checking test 124 conus13km_debug_2threads_intel results .... +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 = 505.920991 -The maximum resident set size (KB) = 1037336 +The total amount of wall time = 516.673198 +The maximum resident set size (KB) = 1036988 -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_14935/conus13km_radar_tten_debug_intel -Checking test 125 conus13km_radar_tten_debug_intel results .... +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 = 887.453724 -The maximum resident set size (KB) = 1105560 +The total amount of wall time = 917.107301 +The maximum resident set size (KB) = 1105408 -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_14935/rap_control_dyn64_phy32_debug_intel -Checking test 126 rap_control_dyn64_phy32_debug_intel results .... +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.495047 -The maximum resident set size (KB) = 981288 +The total amount of wall time = 297.236134 +The maximum resident set size (KB) = 976468 -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_14935/hafs_regional_atm_intel -Checking test 127 hafs_regional_atm_intel results .... +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 = 336.071258 -The maximum resident set size (KB) = 620180 +The total amount of wall time = 342.169924 +The maximum resident set size (KB) = 621792 -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_14935/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 128 hafs_regional_atm_thompson_gfdlsf_intel results .... +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 = 303.894306 -The maximum resident set size (KB) = 973296 +The total amount of wall time = 310.508806 +The maximum resident set size (KB) = 971316 -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_14935/hafs_regional_atm_ocn_intel -Checking test 129 hafs_regional_atm_ocn_intel results .... +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 Comparing archv.2019_241_06.a .........OK @@ -4477,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 = 414.322859 -The maximum resident set size (KB) = 666188 +The total amount of wall time = 422.470786 +The maximum resident set size (KB) = 662404 -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_14935/hafs_regional_atm_wav_intel -Checking test 130 hafs_regional_atm_wav_intel results .... +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 Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4493,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 = 735.079331 -The maximum resident set size (KB) = 693688 +The total amount of wall time = 746.388468 +The maximum resident set size (KB) = 694776 -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_14935/hafs_regional_atm_ocn_wav_intel -Checking test 131 hafs_regional_atm_ocn_wav_intel results .... +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 Comparing archv.2019_241_06.a .........OK @@ -4511,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 = 927.754765 -The maximum resident set size (KB) = 705596 +The total amount of wall time = 941.019260 +The maximum resident set size (KB) = 707884 -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_14935/hafs_regional_1nest_atm_intel -Checking test 132 hafs_regional_1nest_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4540,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.916314 -The maximum resident set size (KB) = 391296 +The total amount of wall time = 314.978649 +The maximum resident set size (KB) = 399148 -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_14935/hafs_regional_telescopic_2nests_atm_intel -Checking test 133 hafs_regional_telescopic_2nests_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4556,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 = 401.757395 -The maximum resident set size (KB) = 405704 +The total amount of wall time = 405.384902 +The maximum resident set size (KB) = 408316 -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_14935/hafs_global_1nest_atm_intel -Checking test 134 hafs_global_1nest_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4610,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 = 168.076823 -The maximum resident set size (KB) = 284208 +The total amount of wall time = 170.278883 +The maximum resident set size (KB) = 283368 -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_14935/hafs_global_multiple_4nests_atm_intel -Checking test 135 hafs_global_multiple_4nests_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4699,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 = 476.943636 -The maximum resident set size (KB) = 372112 +The total amount of wall time = 486.522391 +The maximum resident set size (KB) = 372988 -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_14935/hafs_regional_specified_moving_1nest_atm_intel -Checking test 136 hafs_regional_specified_moving_1nest_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4715,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 = 216.515912 -The maximum resident set size (KB) = 415488 +The total amount of wall time = 218.374333 +The maximum resident set size (KB) = 414296 -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_14935/hafs_regional_storm_following_1nest_atm_intel -Checking test 137 hafs_regional_storm_following_1nest_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4744,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 = 203.873707 -The maximum resident set size (KB) = 414924 +The total amount of wall time = 204.980896 +The maximum resident set size (KB) = 420636 -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_14935/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4760,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 = 259.823510 -The maximum resident set size (KB) = 482180 +The total amount of wall time = 264.191649 +The maximum resident set size (KB) = 494456 -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_14935/hafs_global_storm_following_1nest_atm_intel -Checking test 139 hafs_global_storm_following_1nest_atm_intel results .... +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 = 89.591115 -The maximum resident set size (KB) = 314992 +The total amount of wall time = 91.972821 +The maximum resident set size (KB) = 323192 -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_14935/gnv1_nested_intel -Checking test 140 gnv1_nested_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4828,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 = 236.277088 -The maximum resident set size (KB) = 676880 +The total amount of wall time = 237.804547 +The maximum resident set size (KB) = 682784 -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_14935/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +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 = 820.261843 -The maximum resident set size (KB) = 500756 +The total amount of wall time = 815.386804 +The maximum resident set size (KB) = 502400 -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_14935/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4860,162 +5033,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 = 511.154812 -The maximum resident set size (KB) = 531092 +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-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 + 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 = 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-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 .........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.255191 +The maximum resident set size (KB) = 706472 -Test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +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_14935/hafs_regional_docn_intel -Checking test 143 hafs_regional_docn_intel results .... +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 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 = 384.490020 -The maximum resident set size (KB) = 652000 +The total amount of wall time = 393.007385 +The maximum resident set size (KB) = 658632 -Test 143 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_14935/hafs_regional_docn_oisst_intel -Checking test 144 hafs_regional_docn_oisst_intel results .... +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 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 = 387.683581 -The maximum resident set size (KB) = 636448 +The total amount of wall time = 398.036164 +The maximum resident set size (KB) = 638520 -Test 144 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_14935/hafs_regional_datm_cdeps_intel -Checking test 145 hafs_regional_datm_cdeps_intel results .... +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 = 945.330065 -The maximum resident set size (KB) = 884992 +The total amount of wall time = 946.882696 +The maximum resident set size (KB) = 884056 -Test 145 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_14935/datm_cdeps_control_cfsr_intel -Checking test 146 datm_cdeps_control_cfsr_intel results .... +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 = 141.802332 -The maximum resident set size (KB) = 732944 +The total amount of wall time = 142.558777 +The maximum resident set size (KB) = 750872 -Test 146 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_14935/datm_cdeps_restart_cfsr_intel -Checking test 147 datm_cdeps_restart_cfsr_intel results .... +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 = 84.992746 -The maximum resident set size (KB) = 735440 +The total amount of wall time = 85.527016 +The maximum resident set size (KB) = 738112 -Test 147 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_14935/datm_cdeps_control_gefs_intel -Checking test 148 datm_cdeps_control_gefs_intel results .... +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.074205 -The maximum resident set size (KB) = 628036 +The total amount of wall time = 134.387022 +The maximum resident set size (KB) = 628924 -Test 148 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_14935/datm_cdeps_iau_gefs_intel -Checking test 149 datm_cdeps_iau_gefs_intel results .... +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 = 135.364047 -The maximum resident set size (KB) = 628472 +The total amount of wall time = 136.437657 +The maximum resident set size (KB) = 627908 -Test 149 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_14935/datm_cdeps_stochy_gefs_intel -Checking test 150 datm_cdeps_stochy_gefs_intel results .... +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.061800 -The maximum resident set size (KB) = 624824 +The total amount of wall time = 138.735326 +The maximum resident set size (KB) = 629404 -Test 150 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_14935/datm_cdeps_ciceC_cfsr_intel -Checking test 151 datm_cdeps_ciceC_cfsr_intel results .... +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 = 141.709574 -The maximum resident set size (KB) = 743800 +The total amount of wall time = 142.760720 +The maximum resident set size (KB) = 748616 -Test 151 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_14935/datm_cdeps_bulk_cfsr_intel -Checking test 152 datm_cdeps_bulk_cfsr_intel results .... +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 = 142.580819 -The maximum resident set size (KB) = 744788 +The total amount of wall time = 142.978655 +The maximum resident set size (KB) = 748420 -Test 152 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_14935/datm_cdeps_bulk_gefs_intel -Checking test 153 datm_cdeps_bulk_gefs_intel results .... +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 = 133.278850 -The maximum resident set size (KB) = 624452 +The total amount of wall time = 134.008922 +The maximum resident set size (KB) = 637940 -Test 153 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_14935/datm_cdeps_mx025_cfsr_intel -Checking test 154 datm_cdeps_mx025_cfsr_intel results .... +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 Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5023,15 +5231,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 = 339.134673 -The maximum resident set size (KB) = 592216 +The total amount of wall time = 338.258668 +The maximum resident set size (KB) = 597356 -Test 154 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_14935/datm_cdeps_mx025_gefs_intel -Checking test 155 datm_cdeps_mx025_gefs_intel results .... +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 Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5039,65 +5247,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 = 336.552928 -The maximum resident set size (KB) = 573428 +The total amount of wall time = 337.139239 +The maximum resident set size (KB) = 575816 -Test 155 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_14935/datm_cdeps_multiple_files_cfsr_intel -Checking test 156 datm_cdeps_multiple_files_cfsr_intel results .... +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 = 141.943113 -The maximum resident set size (KB) = 744484 +The total amount of wall time = 142.020984 +The maximum resident set size (KB) = 747652 -Test 156 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_14935/datm_cdeps_3072x1536_cfsr_intel -Checking test 157 datm_cdeps_3072x1536_cfsr_intel results .... +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 = 259.044628 -The maximum resident set size (KB) = 1991356 +The total amount of wall time = 261.128389 +The maximum resident set size (KB) = 2006244 -Test 157 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_14935/datm_cdeps_gfs_intel -Checking test 158 datm_cdeps_gfs_intel results .... +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 = 259.834182 -The maximum resident set size (KB) = 1995676 +The total amount of wall time = 261.154855 +The maximum resident set size (KB) = 2009212 -Test 158 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_14935/datm_cdeps_control_cfsr_faster_intel -Checking test 159 datm_cdeps_control_cfsr_faster_intel results .... +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.444154 -The maximum resident set size (KB) = 743272 +The total amount of wall time = 142.598568 +The maximum resident set size (KB) = 747464 -Test 159 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_14935/datm_cdeps_lnd_gswp3_intel -Checking test 160 datm_cdeps_lnd_gswp3_intel results .... +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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5105,15 +5313,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 = 57.250879 -The maximum resident set size (KB) = 218368 +The total amount of wall time = 58.115373 +The maximum resident set size (KB) = 226600 -Test 160 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_14935/datm_cdeps_lnd_era5_intel -Checking test 161 datm_cdeps_lnd_era5_intel results .... +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 Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5121,15 +5329,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 = 56.610439 -The maximum resident set size (KB) = 370764 +The total amount of wall time = 57.782992 +The maximum resident set size (KB) = 372344 -Test 161 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_14935/datm_cdeps_lnd_era5_rst_intel -Checking test 162 datm_cdeps_lnd_era5_rst_intel results .... +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 Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5137,15 +5345,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 = 40.515751 -The maximum resident set size (KB) = 368796 +The total amount of wall time = 41.738809 +The maximum resident set size (KB) = 369036 -Test 162 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_14935/control_p8_atmlnd_sbs_intel -Checking test 163 control_p8_atmlnd_sbs_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -5233,15 +5441,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 = 274.721995 -The maximum resident set size (KB) = 1546276 +The total amount of wall time = 273.901339 +The maximum resident set size (KB) = 1552676 -Test 163 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_14935/control_p8_atmlnd_intel -Checking test 164 control_p8_atmlnd_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -5329,15 +5537,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.870829 -The maximum resident set size (KB) = 1549996 +The total amount of wall time = 274.958810 +The maximum resident set size (KB) = 1551708 -Test 164 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_14935/control_restart_p8_atmlnd_intel -Checking test 165 control_restart_p8_atmlnd_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -5357,15 +5565,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 = 151.060929 -The maximum resident set size (KB) = 746628 +The total amount of wall time = 153.485020 +The maximum resident set size (KB) = 743256 -Test 165 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_14935/atmwav_control_noaero_p8_intel -Checking test 166 atmwav_control_noaero_p8_intel results .... +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 Comparing atmf000.nc .........OK @@ -5407,15 +5615,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 = 101.125410 -The maximum resident set size (KB) = 1554032 +The total amount of wall time = 98.407449 +The maximum resident set size (KB) = 1545788 -Test 166 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_14935/control_atmwav_intel -Checking test 167 control_atmwav_intel results .... +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 Comparing atmf000.nc .........OK @@ -5458,15 +5666,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 = 92.063685 -The maximum resident set size (KB) = 543412 +The total amount of wall time = 90.125650 +The maximum resident set size (KB) = 545940 -Test 167 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_14935/atmaero_control_p8_intel -Checking test 168 atmaero_control_p8_intel results .... +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 Comparing atmf000.nc .........OK @@ -5509,15 +5717,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.539285 -The maximum resident set size (KB) = 2850632 +The total amount of wall time = 235.843111 +The maximum resident set size (KB) = 2849320 -Test 168 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_14935/atmaero_control_p8_rad_intel -Checking test 169 atmaero_control_p8_rad_intel results .... +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 Comparing atmf000.nc .........OK @@ -5560,15 +5768,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 = 276.586156 -The maximum resident set size (KB) = 2911012 +The total amount of wall time = 275.571678 +The maximum resident set size (KB) = 2912816 -Test 169 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_14935/atmaero_control_p8_rad_micro_intel -Checking test 170 atmaero_control_p8_rad_micro_intel results .... +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 Comparing atmf000.nc .........OK @@ -5611,15 +5819,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.803726 -The maximum resident set size (KB) = 2924344 +The total amount of wall time = 290.166390 +The maximum resident set size (KB) = 2925388 -Test 170 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_14935/regional_atmaq_debug_intel -Checking test 171 regional_atmaq_debug_intel results .... +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 Comparing atmf000.nc .........OK @@ -5632,12 +5840,10 @@ 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 = 1309.565961 -The maximum resident set size (KB) = 4425904 +The total amount of wall time = 1314.456259 +The maximum resident set size (KB) = 4443464 -Test 171 regional_atmaq_debug_intel PASS +Test 176 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 30 20:56:19 UTC 2024 -Elapsed time: 02h:08m:55s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 9018e718ae..98143b4f48 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,59 +1,60 @@ -Tue 30 Jan 2024 07:25:23 AM MST +Thu 08 Feb 2024 07:32:54 AM MST Start Regression test -Testing UFSWM Hash: ec848db8c3a6942ff39becb62b9742902b80ade3 +Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 13ed05982efc95c077efc3b9609688554e3a854c CMEPS-interface/CMEPS (cmeps_v0.4.1-2302-g13ed059) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 400e2129e147212ae2820368a8e0de6fd2492b36 FV3 (remotes/origin/nssl_mp_init) + 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 601 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 583 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 463 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 661 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 713 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 770 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 717 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 550 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 278 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 439 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 434 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 135 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 782 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 377 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 848 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 807 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 411 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 675 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 523 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 303 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 538 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 609 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 851 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 1143 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 610 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 626 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 1149 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 556 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 1107 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 492 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 1205 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 305 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 511 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_1602/cpld_control_p8_mixedmode_intel +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 + +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 @@ -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 = 280.727775 -The maximum resident set size (KB) = 2991084 +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_1602/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 @@ -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 = 809.908566 -The maximum resident set size (KB) = 1605952 +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_1602/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 @@ -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 = 878.690469 -The maximum resident set size (KB) = 1745348 +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_1602/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 @@ -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 = 401.830330 -The maximum resident set size (KB) = 880784 +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_1602/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 @@ -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 = 931.149951 -The maximum resident set size (KB) = 1583560 +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_1602/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 @@ -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 = 1286.694692 -The maximum resident set size (KB) = 1630060 +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_1602/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 @@ -504,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 = 321.296029 -The maximum resident set size (KB) = 3017236 +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_1602/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 @@ -564,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 = 184.826817 -The maximum resident set size (KB) = 3071248 +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_1602/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 @@ -636,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 = 320.493079 -The maximum resident set size (KB) = 3050320 +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_1602/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 @@ -696,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 = 183.703719 -The maximum resident set size (KB) = 3098004 +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_1602/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 @@ -756,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 = 315.925252 -The maximum resident set size (KB) = 3013212 +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_1602/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 @@ -816,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 = 261.577197 -The maximum resident set size (KB) = 3298112 +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_1602/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 @@ -888,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 = 318.126987 -The maximum resident set size (KB) = 3026628 +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_1602/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 @@ -948,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 = 504.189610 -The maximum resident set size (KB) = 3560632 +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_1602/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 @@ -1008,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 = 323.085869 -The maximum resident set size (KB) = 3543212 +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_1602/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 @@ -1066,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 = 299.265956 -The maximum resident set size (KB) = 2991920 +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_1602/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 @@ -1137,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 = 238.495316 -The maximum resident set size (KB) = 1595916 +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_1602/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 @@ -1206,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 = 239.504736 -The maximum resident set size (KB) = 1647044 +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_1602/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 @@ -1266,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 = 458.654172 -The maximum resident set size (KB) = 3075756 +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_1602/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 @@ -1325,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 = 306.724685 -The maximum resident set size (KB) = 1630680 +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_1602/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 @@ -1394,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 = 240.670014 -The maximum resident set size (KB) = 1645032 +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_1602/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 @@ -1451,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 = 384.009994 -The maximum resident set size (KB) = 2663700 +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_1602/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 @@ -1522,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 = 823.990738 -The maximum resident set size (KB) = 1619360 +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_1602/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 @@ -1581,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 = 406.029260 -The maximum resident set size (KB) = 939076 +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_1602/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 @@ -1652,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 = 944.678578 -The maximum resident set size (KB) = 1598128 +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_1602/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 @@ -1711,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 = 1347.293302 -The maximum resident set size (KB) = 1638684 +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_1602/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 @@ -1729,15 +1730,15 @@ Checking test 027 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 192.795398 -The maximum resident set size (KB) = 593556 +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_1602/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 @@ -1763,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 = 111.430848 -The maximum resident set size (KB) = 542008 +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_1602/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 @@ -1785,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 = 116.013401 -The maximum resident set size (KB) = 548576 +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_1602/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 @@ -1803,15 +1804,15 @@ Checking test 030 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 112.137836 -The maximum resident set size (KB) = 542964 +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_1602/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 @@ -1821,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 = 113.229684 -The maximum resident set size (KB) = 544844 +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_1602/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 @@ -1867,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 = 306.834299 -The maximum resident set size (KB) = 730868 +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_1602/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 @@ -1885,15 +1886,15 @@ Checking test 033 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 454.066023 -The maximum resident set size (KB) = 662620 +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_1602/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 @@ -1903,15 +1904,15 @@ Checking test 034 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 464.597703 -The maximum resident set size (KB) = 983772 +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_1602/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 @@ -1953,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 = 408.955545 -The maximum resident set size (KB) = 1122324 +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_1602/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 @@ -1971,29 +1972,29 @@ Checking test 036 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 73.135665 -The maximum resident set size (KB) = 551868 +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_1602/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 = 39.947226 -The maximum resident set size (KB) = 359192 +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_1602/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 @@ -2003,15 +2004,15 @@ Checking test 038 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 68.915572 -The maximum resident set size (KB) = 546964 +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_1602/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 @@ -2025,15 +2026,15 @@ Checking test 039 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 112.254200 -The maximum resident set size (KB) = 546140 +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_1602/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 @@ -2047,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.691037 -The maximum resident set size (KB) = 544368 +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_1602/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 @@ -2101,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 = 136.582633 -The maximum resident set size (KB) = 1516476 +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_1602/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 @@ -2155,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 = 135.597857 -The maximum resident set size (KB) = 1518452 +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_1602/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 @@ -2201,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 = 72.782895 -The maximum resident set size (KB) = 718372 +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_1602/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 @@ -2255,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 = 136.310182 -The maximum resident set size (KB) = 1510260 +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_1602/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 @@ -2301,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 = 71.561023 -The maximum resident set size (KB) = 723832 +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_1602/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 @@ -2351,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 = 142.727843 -The maximum resident set size (KB) = 1508620 +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_1602/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 @@ -2377,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 = 249.572710 -The maximum resident set size (KB) = 1526292 +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_1602/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 @@ -2431,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 = 183.886794 -The maximum resident set size (KB) = 1583176 +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_1602/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 @@ -2485,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 = 138.774637 -The maximum resident set size (KB) = 1528752 +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_1602/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 @@ -2539,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 = 165.846738 -The maximum resident set size (KB) = 1536620 +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_1602/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 @@ -2557,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.522606 -The maximum resident set size (KB) = 622956 +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_1602/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 = 136.319318 -The maximum resident set size (KB) = 795576 +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_1602/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 @@ -2589,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.523064 -The maximum resident set size (KB) = 624360 +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_1602/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 = 251.928721 -The maximum resident set size (KB) = 1158764 +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_1602/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 = 252.018196 -The maximum resident set size (KB) = 621164 +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_1602/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 @@ -2636,33 +2637,33 @@ Checking test 056 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 254.197100 -The maximum resident set size (KB) = 622932 +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_1602/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 = 323.870072 -The maximum resident set size (KB) = 1595088 +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_1602/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 @@ -2708,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 = 353.793327 -The maximum resident set size (KB) = 934888 +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_1602/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 @@ -2726,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 = 200.032382 -The maximum resident set size (KB) = 1123468 +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_1602/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 @@ -2780,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 = 370.062724 -The maximum resident set size (KB) = 933228 +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_1602/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 @@ -2826,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.064586 -The maximum resident set size (KB) = 811688 +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_1602/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 @@ -2880,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 = 350.328541 -The maximum resident set size (KB) = 934996 +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_1602/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 @@ -2934,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 = 368.222655 -The maximum resident set size (KB) = 930348 +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_1602/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 @@ -2980,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 = 262.891698 -The maximum resident set size (KB) = 811828 +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_1602/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 @@ -3034,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 = 180.198864 -The maximum resident set size (KB) = 932072 +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_1602/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 @@ -3088,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 = 185.724899 -The maximum resident set size (KB) = 929564 +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_1602/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 @@ -3142,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 = 156.685103 -The maximum resident set size (KB) = 1020124 +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_1602/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 = 93.480744 -The maximum resident set size (KB) = 766872 +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_1602/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 @@ -3210,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 = 343.559024 -The maximum resident set size (KB) = 929940 +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_1602/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 @@ -3228,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 = 428.761699 -The maximum resident set size (KB) = 1888416 +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_1602/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 @@ -3250,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.429379 -The maximum resident set size (KB) = 1875160 +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_1602/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 @@ -3272,15 +3273,15 @@ Checking test 072 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 298.276602 -The maximum resident set size (KB) = 615200 +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_1602/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 @@ -3290,15 +3291,15 @@ Checking test 073 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 294.716359 -The maximum resident set size (KB) = 619144 +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_1602/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 @@ -3308,27 +3309,27 @@ Checking test 074 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 160.017410 -The maximum resident set size (KB) = 582392 +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_1602/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 = 102.567026 -The maximum resident set size (KB) = 304048 +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_1602/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 @@ -3374,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 = 130.788396 -The maximum resident set size (KB) = 1521284 +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_1602/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 @@ -3392,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 = 242.219460 -The maximum resident set size (KB) = 626436 +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_1602/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 @@ -3426,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 = 139.462652 -The maximum resident set size (KB) = 716924 +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_1602/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 = 142.684472 -The maximum resident set size (KB) = 717696 +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_1602/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 = 157.947822 -The maximum resident set size (KB) = 718088 +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_1602/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 = 142.153072 -The maximum resident set size (KB) = 722120 +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_1602/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 = 227.484260 -The maximum resident set size (KB) = 758292 +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_1602/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 = 219.528592 -The maximum resident set size (KB) = 763792 +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_1602/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 = 142.980966 -The maximum resident set size (KB) = 731136 +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_1602/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 = 148.784604 -The maximum resident set size (KB) = 774332 +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_1602/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 = 144.451036 -The maximum resident set size (KB) = 1541544 +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_1602/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 = 938.639806 -The maximum resident set size (KB) = 658932 +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_1602/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 = 273.449376 -The maximum resident set size (KB) = 1103448 +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_1602/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.789076 -The maximum resident set size (KB) = 1100952 +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_1602/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 = 268.804365 -The maximum resident set size (KB) = 1102212 +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_1602/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 = 266.143943 -The maximum resident set size (KB) = 1102260 +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_1602/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 = 270.314694 -The maximum resident set size (KB) = 1103824 +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_1602/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 = 285.665257 -The maximum resident set size (KB) = 1182312 +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_1602/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 = 269.592462 -The maximum resident set size (KB) = 1103632 +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_1602/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 = 278.178388 -The maximum resident set size (KB) = 1106184 +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_1602/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 = 269.144104 -The maximum resident set size (KB) = 1102532 +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_1602/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 = 265.207126 -The maximum resident set size (KB) = 1102380 +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_1602/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.611573 -The maximum resident set size (KB) = 1101880 +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_1602/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 = 266.514616 -The maximum resident set size (KB) = 1096904 +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_1602/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 = 453.638216 -The maximum resident set size (KB) = 1101092 +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_1602/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.138573 -The maximum resident set size (KB) = 1093628 +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_1602/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 = 317.244488 -The maximum resident set size (KB) = 1104880 +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_1602/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 = 264.475471 -The maximum resident set size (KB) = 1098772 +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_1602/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 @@ -3824,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 = 478.030324 -The maximum resident set size (KB) = 1102460 +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_1602/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 = 269.888183 -The maximum resident set size (KB) = 350168 +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_1602/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 @@ -3854,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 = 186.224475 -The maximum resident set size (KB) = 979436 +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_1602/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 @@ -3908,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 = 294.514868 -The maximum resident set size (KB) = 806528 +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_1602/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 @@ -3962,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 = 153.674075 -The maximum resident set size (KB) = 803140 +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_1602/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 @@ -4016,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 = 160.715530 -The maximum resident set size (KB) = 803976 +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_1602/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 @@ -4062,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 = 218.821822 -The maximum resident set size (KB) = 710960 +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_1602/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 = 80.401371 -The maximum resident set size (KB) = 694056 +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_1602/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 @@ -4099,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 = 98.852317 -The maximum resident set size (KB) = 1009072 +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_1602/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 = 40.168173 -The maximum resident set size (KB) = 1011644 +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_1602/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 = 54.436607 -The maximum resident set size (KB) = 899988 +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_1602/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 @@ -4179,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 = 203.574063 -The maximum resident set size (KB) = 836360 +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_1602/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 = 258.382072 -The maximum resident set size (KB) = 985528 +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_1602/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 = 257.470478 -The maximum resident set size (KB) = 981524 +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_1602/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 @@ -4228,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 = 794.900810 -The maximum resident set size (KB) = 1061320 +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_1602/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 = 785.916397 -The maximum resident set size (KB) = 1130904 +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_1602/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 = 270.306639 -The maximum resident set size (KB) = 1010636 +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_1602/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 = 249.847237 -The maximum resident set size (KB) = 646684 +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_1602/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 = 286.507397 -The maximum resident set size (KB) = 1001092 +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_1602/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 @@ -4297,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 = 361.527525 -The maximum resident set size (KB) = 703236 +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_1602/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 @@ -4313,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 = 637.782113 -The maximum resident set size (KB) = 727692 +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_1602/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 @@ -4331,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 = 709.315911 -The maximum resident set size (KB) = 745216 +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_1602/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 @@ -4360,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 = 258.890915 -The maximum resident set size (KB) = 401916 +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_1602/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 @@ -4376,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 = 322.079403 -The maximum resident set size (KB) = 424480 +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_1602/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 @@ -4430,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 = 119.575060 -The maximum resident set size (KB) = 318840 +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_1602/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 @@ -4519,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 = 349.360914 -The maximum resident set size (KB) = 386556 +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_1602/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 @@ -4535,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 = 177.609447 -The maximum resident set size (KB) = 438352 +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_1602/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 @@ -4564,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 = 164.245705 -The maximum resident set size (KB) = 437688 +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_1602/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 @@ -4580,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 = 208.118870 -The maximum resident set size (KB) = 507980 +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_1602/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 = 55.579562 -The maximum resident set size (KB) = 353232 +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_1602/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 @@ -4648,29 +4649,47 @@ 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 = 180.433493 -The maximum resident set size (KB) = 715200 +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_1602/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 = 696.777203 -The maximum resident set size (KB) = 538656 +The total amount of wall time = 698.609102 +The maximum resident set size (KB) = 609400 + +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 +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 -Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +The total amount of wall time = 411.816066 +The maximum resident set size (KB) = 626012 +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_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_1602/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_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 @@ -4680,162 +4699,179 @@ 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 = 408.067328 -The maximum resident set size (KB) = 558748 +The total amount of wall time = 416.240632 +The maximum resident set size (KB) = 679900 + +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 +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 -Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +The total amount of wall time = 300.456709 +The maximum resident set size (KB) = 673444 +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_1602/hafs_regional_docn_intel -Checking test 137 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 = 308.549708 -The maximum resident set size (KB) = 674812 +The total amount of wall time = 315.182157 +The maximum resident set size (KB) = 746968 -Test 137 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_1602/hafs_regional_docn_oisst_intel -Checking test 138 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 = 312.976810 -The maximum resident set size (KB) = 659356 +The total amount of wall time = 315.081624 +The maximum resident set size (KB) = 730200 -Test 138 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_1602/hafs_regional_datm_cdeps_intel -Checking test 139 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 = 972.514491 -The maximum resident set size (KB) = 894056 +The total amount of wall time = 956.504239 +The maximum resident set size (KB) = 894200 -Test 139 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_1602/datm_cdeps_control_cfsr_intel -Checking test 140 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 = 139.448265 -The maximum resident set size (KB) = 754936 +The total amount of wall time = 139.453860 +The maximum resident set size (KB) = 760584 -Test 140 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_1602/datm_cdeps_restart_cfsr_intel -Checking test 141 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 = 82.402848 -The maximum resident set size (KB) = 742584 +The total amount of wall time = 83.767578 +The maximum resident set size (KB) = 736892 -Test 141 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_1602/datm_cdeps_control_gefs_intel -Checking test 142 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 = 131.458488 -The maximum resident set size (KB) = 641192 +The total amount of wall time = 131.698148 +The maximum resident set size (KB) = 642456 -Test 142 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_1602/datm_cdeps_iau_gefs_intel -Checking test 143 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 = 133.916633 -The maximum resident set size (KB) = 637276 +The total amount of wall time = 134.176013 +The maximum resident set size (KB) = 641732 -Test 143 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_1602/datm_cdeps_stochy_gefs_intel -Checking test 144 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.171198 -The maximum resident set size (KB) = 635856 +The total amount of wall time = 134.400324 +The maximum resident set size (KB) = 640108 -Test 144 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_1602/datm_cdeps_ciceC_cfsr_intel -Checking test 145 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 = 139.260499 -The maximum resident set size (KB) = 754728 +The total amount of wall time = 139.664004 +The maximum resident set size (KB) = 748848 -Test 145 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_1602/datm_cdeps_bulk_cfsr_intel -Checking test 146 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 = 139.739850 -The maximum resident set size (KB) = 756704 +The total amount of wall time = 140.098541 +The maximum resident set size (KB) = 760320 -Test 146 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_1602/datm_cdeps_bulk_gefs_intel -Checking test 147 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 = 130.987995 -The maximum resident set size (KB) = 639136 +The total amount of wall time = 131.269257 +The maximum resident set size (KB) = 637840 -Test 147 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_1602/datm_cdeps_mx025_cfsr_intel -Checking test 148 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 @@ -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 = 320.943997 -The maximum resident set size (KB) = 612648 +The total amount of wall time = 320.895152 +The maximum resident set size (KB) = 687232 -Test 148 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_1602/datm_cdeps_mx025_gefs_intel -Checking test 149 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 @@ -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 = 326.300203 -The maximum resident set size (KB) = 595980 +The total amount of wall time = 319.738173 +The maximum resident set size (KB) = 670892 -Test 149 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_1602/datm_cdeps_multiple_files_cfsr_intel -Checking test 150 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 = 139.002040 -The maximum resident set size (KB) = 745072 +The total amount of wall time = 139.132394 +The maximum resident set size (KB) = 761052 -Test 150 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_1602/datm_cdeps_3072x1536_cfsr_intel -Checking test 151 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 = 223.633541 -The maximum resident set size (KB) = 1997716 +The total amount of wall time = 223.715620 +The maximum resident set size (KB) = 2019800 -Test 151 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_1602/datm_cdeps_gfs_intel -Checking test 152 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 = 224.349617 -The maximum resident set size (KB) = 2002748 +The total amount of wall time = 224.526638 +The maximum resident set size (KB) = 2020888 -Test 152 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_1602/datm_cdeps_debug_cfsr_intel -Checking test 153 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 = 290.366466 -The maximum resident set size (KB) = 745880 +The total amount of wall time = 295.283572 +The maximum resident set size (KB) = 747944 -Test 153 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_1602/datm_cdeps_control_cfsr_faster_intel -Checking test 154 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 = 137.877576 -The maximum resident set size (KB) = 755128 +The total amount of wall time = 140.101650 +The maximum resident set size (KB) = 761196 -Test 154 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_1602/datm_cdeps_lnd_gswp3_intel -Checking test 155 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 @@ -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 = 50.199044 -The maximum resident set size (KB) = 234812 +The total amount of wall time = 52.572138 +The maximum resident set size (KB) = 301168 -Test 155 datm_cdeps_lnd_gswp3_intel PASS Tries: 2 +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_1602/datm_cdeps_lnd_era5_intel -Checking test 156 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 @@ -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 = 45.735990 -The maximum resident set size (KB) = 380244 +The total amount of wall time = 47.488110 +The maximum resident set size (KB) = 450572 -Test 156 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_1602/datm_cdeps_lnd_era5_rst_intel -Checking test 157 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 @@ -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 = 26.599913 -The maximum resident set size (KB) = 376080 +The total amount of wall time = 28.915730 +The maximum resident set size (KB) = 450996 -Test 157 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_1602/control_p8_atmlnd_sbs_intel -Checking test 158 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 @@ -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 = 356.301338 -The maximum resident set size (KB) = 1557688 +The total amount of wall time = 343.794718 +The maximum resident set size (KB) = 1628028 -Test 158 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_1602/control_p8_atmlnd_intel -Checking test 159 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 @@ -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 = 356.034323 -The maximum resident set size (KB) = 1561652 +The total amount of wall time = 338.549950 +The maximum resident set size (KB) = 1631404 -Test 159 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_1602/control_restart_p8_atmlnd_intel -Checking test 160 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 @@ -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 = 233.522582 -The maximum resident set size (KB) = 776444 +The total amount of wall time = 182.205331 +The maximum resident set size (KB) = 847036 -Test 160 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_1602/atmwav_control_noaero_p8_intel -Checking test 161 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 @@ -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 = 79.138080 -The maximum resident set size (KB) = 1561312 +The total amount of wall time = 80.686994 +The maximum resident set size (KB) = 1635336 -Test 161 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_1602/control_atmwav_intel -Checking test 162 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 @@ -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 = 75.583765 -The maximum resident set size (KB) = 562464 +The total amount of wall time = 75.790449 +The maximum resident set size (KB) = 633800 -Test 162 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_1602/atmaero_control_p8_intel -Checking test 163 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 @@ -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 = 201.512874 -The maximum resident set size (KB) = 2869804 +The total amount of wall time = 202.807153 +The maximum resident set size (KB) = 2947520 -Test 163 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_1602/atmaero_control_p8_rad_intel -Checking test 164 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 @@ -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 = 241.524254 -The maximum resident set size (KB) = 2928816 +The total amount of wall time = 242.950049 +The maximum resident set size (KB) = 3002804 -Test 164 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_1602/atmaero_control_p8_rad_micro_intel -Checking test 165 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 @@ -5444,12 +5480,300 @@ 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 = 256.082340 -The maximum resident set size (KB) = 2935992 +The total amount of wall time = 255.668557 +The maximum resident set size (KB) = 3016548 + +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 165 atmaero_control_p8_rad_micro_intel PASS +Test 007 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS REGRESSION TEST WAS SUCCESSFUL -Tue 30 Jan 2024 08:40:24 AM MST -Elapsed time: 01h:15m:02s. 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 d9fca992d5..0e2aae60b1 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,75 +1,76 @@ -Tue Jan 30 16:16:07 UTC 2024 +Thu Feb 8 15:08:27 UTC 2024 Start Regression test -Testing UFSWM Hash: ec848db8c3a6942ff39becb62b9742902b80ade3 +Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 13ed05982efc95c077efc3b9609688554e3a854c CMEPS-interface/CMEPS (cmeps_v0.4.1-1409-g13ed059) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 400e2129e147212ae2820368a8e0de6fd2492b36 FV3 (remotes/origin/nssl_mp_init) + 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 267 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 604 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 196 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 197 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +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 570 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 206 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 548 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 192 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 545 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 604 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 562 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 567 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 540 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 170 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 365 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 818 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 357 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 64 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 586 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 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 602 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 604 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 657 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 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 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 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 530 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -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 560 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 615 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 825 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 595 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +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 660 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 127 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 813 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 936 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 279 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 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 257 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 991 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 849 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 677 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 97 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 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 510 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_2152/cpld_control_p8_mixedmode_intel +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 @@ -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 = 305.518641 - 0: The maximum resident set size (KB) = 3158504 + 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/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 @@ -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 = 959.188763 - 0: The maximum resident set size (KB) = 1733820 + 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/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 @@ -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 = 1007.646047 - 0: The maximum resident set size (KB) = 2009884 + 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/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 @@ -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.911762 - 0: The maximum resident set size (KB) = 1104412 + 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/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 @@ -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 = 1080.009325 - 0: The maximum resident set size (KB) = 1609864 + 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/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 @@ -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 = 1329.346413 - 0: The maximum resident set size (KB) = 1677652 + 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/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 @@ -520,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 = 327.998950 - 0: The maximum resident set size (KB) = 3185300 + 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_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_restart_p8_intel -Checking test 008 cpld_restart_p8_intel results .... +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 + 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.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-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 Comparing sfcf024.tile3.nc .........OK @@ -580,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 = 185.660924 - 0: The maximum resident set size (KB) = 3215868 + 0: The total amount of wall time = 186.245053 + 0: The maximum resident set size (KB) = 3240480 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_control_qr_p8_intel -Checking test 009 cpld_control_qr_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -652,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 = 324.886344 - 0: The maximum resident set size (KB) = 3226252 + 0: The total amount of wall time = 343.227809 + 0: The maximum resident set size (KB) = 3168068 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_restart_qr_p8_intel -Checking test 010 cpld_restart_qr_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -712,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 = 188.854867 - 0: The maximum resident set size (KB) = 3260716 + 0: The total amount of wall time = 190.114373 + 0: The maximum resident set size (KB) = 3255520 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_2threads_p8_intel -Checking test 011 cpld_2threads_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -772,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 = 313.117611 - 0: The maximum resident set size (KB) = 3539744 + 0: The total amount of wall time = 348.120739 + 0: The maximum resident set size (KB) = 3502932 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_decomp_p8_intel -Checking test 012 cpld_decomp_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -832,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 = 325.512918 - 0: The maximum resident set size (KB) = 3180416 + 0: The total amount of wall time = 350.183167 + 0: The maximum resident set size (KB) = 3135388 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_mpi_p8_intel -Checking test 013 cpld_mpi_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -892,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.698059 - 0: The maximum resident set size (KB) = 3059160 + 0: The total amount of wall time = 287.799593 + 0: The maximum resident set size (KB) = 3005896 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_control_ciceC_p8_intel -Checking test 014 cpld_control_ciceC_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -964,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 = 326.635794 - 0: The maximum resident set size (KB) = 3194436 + 0: The total amount of wall time = 324.660500 + 0: The maximum resident set size (KB) = 3201048 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_control_c192_p8_intel -Checking test 015 cpld_control_c192_p8_intel results .... +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 Comparing sfcf030.tile3.nc .........OK @@ -1024,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 = 570.027864 - 0: The maximum resident set size (KB) = 3316988 + 0: The total amount of wall time = 575.633328 + 0: The maximum resident set size (KB) = 3315924 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_restart_c192_p8_intel -Checking test 016 cpld_restart_c192_p8_intel results .... +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 Comparing sfcf030.tile3.nc .........OK @@ -1084,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 = 343.080715 - 0: The maximum resident set size (KB) = 3563488 + 0: The total amount of wall time = 343.493651 + 0: The maximum resident set size (KB) = 3604016 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_bmark_p8_intel -Checking test 017 cpld_bmark_p8_intel results .... +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 Comparing GFSFLX.GrbF06 .........OK @@ -1139,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 = 563.779381 - 0: The maximum resident set size (KB) = 4137112 + 0: The total amount of wall time = 593.432368 + 0: The maximum resident set size (KB) = 4080820 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_restart_bmark_p8_intel -Checking test 018 cpld_restart_bmark_p8_intel results .... +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 Comparing GFSFLX.GrbF06 .........OK @@ -1194,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 = 370.063478 - 0: The maximum resident set size (KB) = 4338004 + 0: The total amount of wall time = 377.890940 + 0: The maximum resident set size (KB) = 4322752 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_s2sa_p8_intel -Checking test 019 cpld_s2sa_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -1252,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 = 312.041394 - 0: The maximum resident set size (KB) = 3117896 + 0: The total amount of wall time = 308.020513 + 0: The maximum resident set size (KB) = 3159568 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_control_noaero_p8_intel -Checking test 020 cpld_control_noaero_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1323,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 = 258.749072 - 0: The maximum resident set size (KB) = 1719032 + 0: The total amount of wall time = 256.568370 + 0: The maximum resident set size (KB) = 1731240 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_control_nowave_noaero_p8_intel -Checking test 021 cpld_control_nowave_noaero_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1392,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 = 254.042113 - 0: The maximum resident set size (KB) = 1757504 + 0: The total amount of wall time = 257.953383 + 0: The maximum resident set size (KB) = 1701164 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_debug_p8_intel -Checking test 022 cpld_debug_p8_intel results .... +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 Comparing sfcf003.tile3.nc .........OK @@ -1452,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 = 472.120502 - 0: The maximum resident set size (KB) = 3206536 + 0: The total amount of wall time = 474.252789 + 0: The maximum resident set size (KB) = 3218088 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_debug_noaero_p8_intel -Checking test 023 cpld_debug_noaero_p8_intel results .... +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 Comparing sfcf003.tile3.nc .........OK @@ -1511,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 = 318.324647 - 0: The maximum resident set size (KB) = 1742572 + 0: The total amount of wall time = 321.653963 + 0: The maximum resident set size (KB) = 1743916 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_control_noaero_p8_agrid_intel -Checking test 024 cpld_control_noaero_p8_agrid_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1580,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.681365 - 0: The maximum resident set size (KB) = 1728360 + 0: The total amount of wall time = 249.364379 + 0: The maximum resident set size (KB) = 1724644 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_control_c48_intel -Checking test 025 cpld_control_c48_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -1637,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 = 550.588108 - 0: The maximum resident set size (KB) = 2815192 + 0: The total amount of wall time = 553.236689 + 0: The maximum resident set size (KB) = 2838252 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_control_p8_faster_intel -Checking test 026 cpld_control_p8_faster_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1709,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 = 301.569508 - 0: The maximum resident set size (KB) = 3209768 + 0: The total amount of wall time = 306.498740 + 0: The maximum resident set size (KB) = 3183960 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_control_pdlib_p8_intel -Checking test 027 cpld_control_pdlib_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1780,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 = 964.632088 - 0: The maximum resident set size (KB) = 1720576 + 0: The total amount of wall time = 963.213310 + 0: The maximum resident set size (KB) = 1759224 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_restart_pdlib_p8_intel -Checking test 028 cpld_restart_pdlib_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -1839,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 = 447.392344 - 0: The maximum resident set size (KB) = 1138932 + 0: The total amount of wall time = 444.997803 + 0: The maximum resident set size (KB) = 1163292 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_mpi_pdlib_p8_intel -Checking test 029 cpld_mpi_pdlib_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1910,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 = 1109.291623 - 0: The maximum resident set size (KB) = 1657544 + 0: The total amount of wall time = 1105.923375 + 0: The maximum resident set size (KB) = 1651300 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_debug_pdlib_p8_intel -Checking test 030 cpld_debug_pdlib_p8_intel results .... +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 Comparing sfcf003.tile3.nc .........OK @@ -1969,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 = 1499.293577 - 0: The maximum resident set size (KB) = 1697212 + 0: The total amount of wall time = 1473.104065 + 0: The maximum resident set size (KB) = 1707776 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_flake_intel -Checking test 031 control_flake_intel results .... +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 Comparing atmf000.nc .........OK @@ -1987,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 = 190.662102 - 0: The maximum resident set size (KB) = 701836 + 0: The total amount of wall time = 210.709650 + 0: The maximum resident set size (KB) = 664288 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_CubedSphereGrid_intel -Checking test 032 control_CubedSphereGrid_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -2021,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 = 136.168261 - 0: The maximum resident set size (KB) = 650200 + 0: The total amount of wall time = 131.579148 + 0: The maximum resident set size (KB) = 644976 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_CubedSphereGrid_parallel_intel -Checking test 033 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK +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 ............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 .........OK + Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK @@ -2043,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 = 141.645855 - 0: The maximum resident set size (KB) = 599132 + 0: The total amount of wall time = 139.524667 + 0: The maximum resident set size (KB) = 631224 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_latlon_intel -Checking test 034 control_latlon_intel results .... +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 Comparing atmf000.nc .........OK @@ -2061,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 = 136.078447 - 0: The maximum resident set size (KB) = 617172 + 0: The total amount of wall time = 134.712062 + 0: The maximum resident set size (KB) = 620428 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_wrtGauss_netcdf_parallel_intel -Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... +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 Comparing atmf000.nc .........OK @@ -2079,15 +2152,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 = 135.806712 - 0: The maximum resident set size (KB) = 640380 + 0: The total amount of wall time = 138.357162 + 0: The maximum resident set size (KB) = 618168 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_c48_intel -Checking test 036 control_c48_intel results .... +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 Comparing atmf000.nc .........OK @@ -2125,15 +2198,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 = 365.797727 -0: The maximum resident set size (KB) = 871624 +0: The total amount of wall time = 370.166127 +0: The maximum resident set size (KB) = 865892 -Test 036 control_c48_intel PASS +Test 037 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_2152/control_c192_intel -Checking test 037 control_c192_intel results .... +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 + 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 = 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-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 Comparing atmf000.nc .........OK @@ -2143,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 = 526.708664 - 0: The maximum resident set size (KB) = 846184 + 0: The total amount of wall time = 529.723595 + 0: The maximum resident set size (KB) = 855268 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_c384_intel -Checking test 038 control_c384_intel results .... +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 Comparing atmf000.nc .........OK @@ -2161,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 = 530.449872 - 0: The maximum resident set size (KB) = 1280072 + 0: The total amount of wall time = 532.615923 + 0: The maximum resident set size (KB) = 1261272 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_c384gdas_intel -Checking test 039 control_c384gdas_intel results .... +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 Comparing atmf000.nc .........OK @@ -2180,7 +2299,7 @@ Checking test 039 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 ............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 @@ -2189,37 +2308,37 @@ Checking test 039 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 ............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 - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.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 .........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 .........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 = 464.153798 - 0: The maximum resident set size (KB) = 1383908 + 0: The total amount of wall time = 466.065616 + 0: The maximum resident set size (KB) = 1393596 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_stochy_intel -Checking test 040 control_stochy_intel results .... +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 Comparing atmf000.nc .........OK @@ -2229,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 = 87.220242 - 0: The maximum resident set size (KB) = 645728 + 0: The total amount of wall time = 88.363915 + 0: The maximum resident set size (KB) = 653604 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_stochy_restart_intel -Checking test 041 control_stochy_restart_intel results .... +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 = 48.028820 - 0: The maximum resident set size (KB) = 503984 + 0: The total amount of wall time = 47.884478 + 0: The maximum resident set size (KB) = 507492 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_lndp_intel -Checking test 042 control_lndp_intel results .... +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 Comparing atmf000.nc .........OK @@ -2261,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 = 83.972087 - 0: The maximum resident set size (KB) = 650860 + 0: The total amount of wall time = 82.152981 + 0: The maximum resident set size (KB) = 653456 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_iovr4_intel -Checking test 043 control_iovr4_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2283,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 = 138.118249 - 0: The maximum resident set size (KB) = 649348 + 0: The total amount of wall time = 135.395905 + 0: The maximum resident set size (KB) = 649312 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_iovr5_intel -Checking test 044 control_iovr5_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2305,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 = 135.294234 - 0: The maximum resident set size (KB) = 651812 + 0: The total amount of wall time = 135.337259 + 0: The maximum resident set size (KB) = 648724 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_p8_intel -Checking test 045 control_p8_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2359,15 +2478,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 = 164.960941 - 0: The maximum resident set size (KB) = 1627304 + 0: The total amount of wall time = 166.784488 + 0: The maximum resident set size (KB) = 1590784 -Test 045 control_p8_intel PASS +Test 047 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_2152/control_p8_ugwpv1_intel -Checking test 046 control_p8_ugwpv1_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2413,15 +2532,69 @@ 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.569539 - 0: The maximum resident set size (KB) = 1616876 + 0: The total amount of wall time = 165.513816 + 0: The maximum resident set size (KB) = 1621544 -Test 046 control_p8_ugwpv1_intel PASS +Test 048 control_p8.v2.sfc_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_2152/control_restart_p8_intel -Checking test 047 control_restart_p8_intel results .... +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 + 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 = 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-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 Comparing GFSFLX.GrbF24 .........OK @@ -2459,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.587812 - 0: The maximum resident set size (KB) = 887532 + 0: The total amount of wall time = 85.907367 + 0: The maximum resident set size (KB) = 859784 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_noqr_p8_intel -Checking test 048 control_noqr_p8_intel results .... +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 Comparing sfcf024.nc ............ALT CHECK......OK @@ -2513,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 = 161.976153 - 0: The maximum resident set size (KB) = 1602992 + 0: The total amount of wall time = 168.195148 + 0: The maximum resident set size (KB) = 1559704 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_restart_noqr_p8_intel -Checking test 049 control_restart_noqr_p8_intel results .... +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 Comparing GFSFLX.GrbF24 .........OK @@ -2559,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 = 84.376333 - 0: The maximum resident set size (KB) = 928748 + 0: The total amount of wall time = 84.521588 + 0: The maximum resident set size (KB) = 915724 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_decomp_p8_intel -Checking test 050 control_decomp_p8_intel results .... +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 Comparing atmf000.nc ............ALT CHECK......OK @@ -2609,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 = 168.980687 - 0: The maximum resident set size (KB) = 1592404 + 0: The total amount of wall time = 167.286281 + 0: The maximum resident set size (KB) = 1600912 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_2threads_p8_intel -Checking test 051 control_2threads_p8_intel results .... +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 Comparing atmf000.nc ............ALT CHECK......OK @@ -2659,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 = 151.616611 - 0: The maximum resident set size (KB) = 1714200 + 0: The total amount of wall time = 151.290249 + 0: The maximum resident set size (KB) = 1702476 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_p8_lndp_intel -Checking test 052 control_p8_lndp_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2685,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 = 298.027385 - 0: The maximum resident set size (KB) = 1614720 + 0: The total amount of wall time = 297.579657 + 0: The maximum resident set size (KB) = 1604256 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_p8_rrtmgp_intel -Checking test 053 control_p8_rrtmgp_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2739,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 = 220.308141 - 0: The maximum resident set size (KB) = 1681100 + 0: The total amount of wall time = 217.021947 + 0: The maximum resident set size (KB) = 1677636 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_p8_mynn_intel -Checking test 054 control_p8_mynn_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2793,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 = 165.433183 - 0: The maximum resident set size (KB) = 1631460 + 0: The total amount of wall time = 164.503320 + 0: The maximum resident set size (KB) = 1622600 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/merra2_thompson_intel -Checking test 055 merra2_thompson_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2847,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 = 197.032341 - 0: The maximum resident set size (KB) = 1613712 + 0: The total amount of wall time = 193.791505 + 0: The maximum resident set size (KB) = 1627612 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/regional_control_intel -Checking test 056 regional_control_intel results .... +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 Comparing phyf000.nc .........OK @@ -2865,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 = 297.926032 - 0: The maximum resident set size (KB) = 817792 + 0: The total amount of wall time = 293.314301 + 0: The maximum resident set size (KB) = 850052 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/regional_restart_intel -Checking test 057 regional_restart_intel results .... +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 = 151.738123 - 0: The maximum resident set size (KB) = 1022364 + 0: The total amount of wall time = 151.850471 + 0: The maximum resident set size (KB) = 989684 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/regional_decomp_intel -Checking test 058 regional_decomp_intel results .... +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 Comparing phyf000.nc .........OK @@ -2897,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 = 313.588810 - 0: The maximum resident set size (KB) = 849372 + 0: The total amount of wall time = 312.509804 + 0: The maximum resident set size (KB) = 843328 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/regional_2threads_intel -Checking test 059 regional_2threads_intel results .... +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 Comparing phyf000.nc .........OK @@ -2915,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 = 182.494029 - 0: The maximum resident set size (KB) = 842344 + 0: The total amount of wall time = 180.266513 + 0: The maximum resident set size (KB) = 845260 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/regional_noquilt_intel -Checking test 060 regional_noquilt_intel results .... +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 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 = 288.959378 - 0: The maximum resident set size (KB) = 1360756 + 0: The total amount of wall time = 292.569724 + 0: The maximum resident set size (KB) = 1361036 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/regional_netcdf_parallel_intel -Checking test 061 regional_netcdf_parallel_intel results .... +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 = 292.925321 - 0: The maximum resident set size (KB) = 850584 + 0: The total amount of wall time = 291.349207 + 0: The maximum resident set size (KB) = 845580 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/regional_2dwrtdecomp_intel -Checking test 062 regional_2dwrtdecomp_intel results .... +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 Comparing phyf000.nc .........OK @@ -2962,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.505552 - 0: The maximum resident set size (KB) = 845516 + 0: The total amount of wall time = 293.482920 + 0: The maximum resident set size (KB) = 850384 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/regional_wofs_intel -Checking test 063 regional_wofs_intel results .... +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 Comparing phyf000.nc .........OK @@ -2980,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.922828 - 0: The maximum resident set size (KB) = 1907476 + 0: The total amount of wall time = 383.607964 + 0: The maximum resident set size (KB) = 1917360 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_control_intel -Checking test 064 rap_control_intel results .... +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 Comparing sfcf024.nc .........OK @@ -3034,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 = 446.407464 - 0: The maximum resident set size (KB) = 1091168 + 0: The total amount of wall time = 448.168093 + 0: The maximum resident set size (KB) = 1098992 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/regional_spp_sppt_shum_skeb_intel -Checking test 065 regional_spp_sppt_shum_skeb_intel results .... +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 Comparing phyf000.nc .........OK @@ -3052,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 = 234.528112 - 0: The maximum resident set size (KB) = 1280028 + 0: The total amount of wall time = 235.931166 + 0: The maximum resident set size (KB) = 1276012 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_decomp_intel -Checking test 066 rap_decomp_intel results .... +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 Comparing sfcf024.nc .........OK @@ -3106,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 = 472.723038 - 0: The maximum resident set size (KB) = 1018984 + 0: The total amount of wall time = 471.009899 + 0: The maximum resident set size (KB) = 1007800 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_2threads_intel -Checking test 067 rap_2threads_intel results .... +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 Comparing sfcf024.nc .........OK @@ -3160,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 = 423.785943 - 0: The maximum resident set size (KB) = 1178072 + 0: The total amount of wall time = 419.434334 + 0: The maximum resident set size (KB) = 1163568 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_restart_intel -Checking test 068 rap_restart_intel results .... +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 Comparing GFSFLX.GrbF24 .........OK @@ -3206,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.324835 - 0: The maximum resident set size (KB) = 1093556 + 0: The total amount of wall time = 228.997067 + 0: The maximum resident set size (KB) = 1107008 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_sfcdiff_intel -Checking test 069 rap_sfcdiff_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3260,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 = 448.386456 - 0: The maximum resident set size (KB) = 1096248 + 0: The total amount of wall time = 445.413781 + 0: The maximum resident set size (KB) = 1102424 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_sfcdiff_decomp_intel -Checking test 070 rap_sfcdiff_decomp_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3314,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 = 473.522887 - 0: The maximum resident set size (KB) = 1029860 + 0: The total amount of wall time = 470.026565 + 0: The maximum resident set size (KB) = 1033808 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_sfcdiff_restart_intel -Checking test 071 rap_sfcdiff_restart_intel results .... +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 Comparing GFSFLX.GrbF12 .........OK @@ -3360,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 = 335.426944 - 0: The maximum resident set size (KB) = 1092032 + 0: The total amount of wall time = 335.988955 + 0: The maximum resident set size (KB) = 1129108 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_intel -Checking test 072 hrrr_control_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3414,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 = 227.598796 - 0: The maximum resident set size (KB) = 1036480 + 0: The total amount of wall time = 227.821286 + 0: The maximum resident set size (KB) = 1046068 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_decomp_intel -Checking test 073 hrrr_control_decomp_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3468,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 = 238.146736 - 0: The maximum resident set size (KB) = 991448 + 0: The total amount of wall time = 233.629703 + 0: The maximum resident set size (KB) = 1023112 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_2threads_intel -Checking test 074 hrrr_control_2threads_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3522,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 = 209.234851 - 0: The maximum resident set size (KB) = 1117592 + 0: The total amount of wall time = 207.014405 + 0: The maximum resident set size (KB) = 1104824 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_restart_intel -Checking test 075 hrrr_control_restart_intel results .... +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 = 119.086104 - 0: The maximum resident set size (KB) = 998772 + 0: The total amount of wall time = 118.119239 + 0: The maximum resident set size (KB) = 993664 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rrfs_v1beta_intel -Checking test 076 rrfs_v1beta_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3590,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 = 443.975782 - 0: The maximum resident set size (KB) = 1088820 + 0: The total amount of wall time = 440.896499 + 0: The maximum resident set size (KB) = 1084516 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rrfs_v1nssl_intel -Checking test 077 rrfs_v1nssl_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3612,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 = 540.445669 - 0: The maximum resident set size (KB) = 1973476 + 0: The total amount of wall time = 540.362325 + 0: The maximum resident set size (KB) = 1977764 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rrfs_v1nssl_nohailnoccn_intel -Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3634,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 = 522.321427 - 0: The maximum resident set size (KB) = 2039216 + 0: The total amount of wall time = 526.826438 + 0: The maximum resident set size (KB) = 2035232 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_csawmg_intel -Checking test 079 control_csawmg_intel results .... +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 Comparing atmf000.nc .........OK @@ -3652,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 = 339.418490 - 0: The maximum resident set size (KB) = 746436 + 0: The total amount of wall time = 338.588878 + 0: The maximum resident set size (KB) = 740564 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_csawmgt_intel -Checking test 080 control_csawmgt_intel results .... +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 Comparing atmf000.nc .........OK @@ -3670,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 = 333.346240 - 0: The maximum resident set size (KB) = 733980 + 0: The total amount of wall time = 332.372974 + 0: The maximum resident set size (KB) = 742316 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_ras_intel -Checking test 081 control_ras_intel results .... +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 Comparing atmf000.nc .........OK @@ -3688,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 = 184.917481 - 0: The maximum resident set size (KB) = 719232 + 0: The total amount of wall time = 186.814175 + 0: The maximum resident set size (KB) = 732676 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_wam_intel -Checking test 082 control_wam_intel results .... +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.762925 - 0: The maximum resident set size (KB) = 656128 + 0: The total amount of wall time = 111.289121 + 0: The maximum resident set size (KB) = 657500 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_p8_faster_intel -Checking test 083 control_p8_faster_intel results .... +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 Comparing sfcf024.nc .........OK @@ -3754,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 = 147.971462 - 0: The maximum resident set size (KB) = 1615572 + 0: The total amount of wall time = 144.288004 + 0: The maximum resident set size (KB) = 1620200 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/regional_control_faster_intel -Checking test 084 regional_control_faster_intel results .... +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 Comparing phyf000.nc .........OK @@ -3772,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 = 265.608711 - 0: The maximum resident set size (KB) = 847072 + 0: The total amount of wall time = 270.297014 + 0: The maximum resident set size (KB) = 819524 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_CubedSphereGrid_debug_intel -Checking test 085 control_CubedSphereGrid_debug_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -3806,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.960335 - 0: The maximum resident set size (KB) = 808440 + 0: The total amount of wall time = 147.121616 + 0: The maximum resident set size (KB) = 808752 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... +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 = 146.413551 - 0: The maximum resident set size (KB) = 805244 + 0: The total amount of wall time = 147.015880 + 0: The maximum resident set size (KB) = 812864 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_stochy_debug_intel -Checking test 087 control_stochy_debug_intel results .... +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 = 165.096482 - 0: The maximum resident set size (KB) = 815848 + 0: The total amount of wall time = 165.721805 + 0: The maximum resident set size (KB) = 818436 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_lndp_debug_intel -Checking test 088 control_lndp_debug_intel results .... +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 = 149.743342 - 0: The maximum resident set size (KB) = 815840 + 0: The total amount of wall time = 148.378824 + 0: The maximum resident set size (KB) = 819920 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_csawmg_debug_intel -Checking test 089 control_csawmg_debug_intel results .... +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 = 227.608162 - 0: The maximum resident set size (KB) = 859668 + 0: The total amount of wall time = 226.078308 + 0: The maximum resident set size (KB) = 862512 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_csawmgt_debug_intel -Checking test 090 control_csawmgt_debug_intel results .... +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 = 230.191769 - 0: The maximum resident set size (KB) = 830256 + 0: The total amount of wall time = 226.740961 + 0: The maximum resident set size (KB) = 855692 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_ras_debug_intel -Checking test 091 control_ras_debug_intel results .... +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 = 152.655116 - 0: The maximum resident set size (KB) = 819016 + 0: The total amount of wall time = 148.562313 + 0: The maximum resident set size (KB) = 825652 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_diag_debug_intel -Checking test 092 control_diag_debug_intel results .... +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 = 157.861331 - 0: The maximum resident set size (KB) = 864088 + 0: The total amount of wall time = 150.848000 + 0: The maximum resident set size (KB) = 867432 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_debug_p8_intel -Checking test 093 control_debug_p8_intel results .... +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 = 153.716427 - 0: The maximum resident set size (KB) = 1631784 + 0: The total amount of wall time = 157.435773 + 0: The maximum resident set size (KB) = 1632216 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/regional_debug_intel -Checking test 094 regional_debug_intel results .... +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 = 958.017760 - 0: The maximum resident set size (KB) = 842972 + 0: The total amount of wall time = 958.876863 + 0: The maximum resident set size (KB) = 838604 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_control_debug_intel -Checking test 095 rap_control_debug_intel results .... +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 = 271.920078 - 0: The maximum resident set size (KB) = 1208128 + 0: The total amount of wall time = 273.880276 + 0: The maximum resident set size (KB) = 1193948 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_debug_intel -Checking test 096 hrrr_control_debug_intel results .... +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 = 267.811034 - 0: The maximum resident set size (KB) = 1199076 + 0: The total amount of wall time = 268.149309 + 0: The maximum resident set size (KB) = 1201176 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_gf_debug_intel -Checking test 097 hrrr_gf_debug_intel results .... +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 = 265.844439 - 0: The maximum resident set size (KB) = 1207924 + 0: The total amount of wall time = 268.689059 + 0: The maximum resident set size (KB) = 1201728 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_c3_debug_intel -Checking test 098 hrrr_c3_debug_intel results .... +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 = 270.237612 - 0: The maximum resident set size (KB) = 1209052 + 0: The total amount of wall time = 270.013251 + 0: The maximum resident set size (KB) = 1204432 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_unified_drag_suite_debug_intel -Checking test 099 rap_unified_drag_suite_debug_intel results .... +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 = 270.532234 - 0: The maximum resident set size (KB) = 1198040 + 0: The total amount of wall time = 267.997141 + 0: The maximum resident set size (KB) = 1207464 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_diag_debug_intel -Checking test 100 rap_diag_debug_intel results .... +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 = 294.297655 - 0: The maximum resident set size (KB) = 1259932 + 0: The total amount of wall time = 282.283111 + 0: The maximum resident set size (KB) = 1282944 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_cires_ugwp_debug_intel -Checking test 101 rap_cires_ugwp_debug_intel results .... +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 = 282.469686 - 0: The maximum resident set size (KB) = 1200652 + 0: The total amount of wall time = 278.284862 + 0: The maximum resident set size (KB) = 1202040 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_unified_ugwp_debug_intel -Checking test 102 rap_unified_ugwp_debug_intel results .... +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 = 278.941681 - 0: The maximum resident set size (KB) = 1206176 + 0: The total amount of wall time = 277.044195 + 0: The maximum resident set size (KB) = 1201648 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_lndp_debug_intel -Checking test 103 rap_lndp_debug_intel results .... +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 = 272.987276 - 0: The maximum resident set size (KB) = 1197492 + 0: The total amount of wall time = 275.870984 + 0: The maximum resident set size (KB) = 1193776 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_progcld_thompson_debug_intel -Checking test 104 rap_progcld_thompson_debug_intel results .... +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 = 271.282720 - 0: The maximum resident set size (KB) = 1201568 + 0: The total amount of wall time = 274.906707 + 0: The maximum resident set size (KB) = 1191716 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_noah_debug_intel -Checking test 105 rap_noah_debug_intel results .... +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 = 268.018809 - 0: The maximum resident set size (KB) = 1191920 + 0: The total amount of wall time = 270.729682 + 0: The maximum resident set size (KB) = 1196132 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_sfcdiff_debug_intel -Checking test 106 rap_sfcdiff_debug_intel results .... +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 = 270.024716 - 0: The maximum resident set size (KB) = 1201788 + 0: The total amount of wall time = 273.185789 + 0: The maximum resident set size (KB) = 1164884 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +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 = 444.377832 - 0: The maximum resident set size (KB) = 1215844 + 0: The total amount of wall time = 438.612333 + 0: The maximum resident set size (KB) = 1192988 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rrfs_v1beta_debug_intel -Checking test 108 rrfs_v1beta_debug_intel results .... +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 = 269.482961 - 0: The maximum resident set size (KB) = 1193080 + 0: The total amount of wall time = 266.136387 + 0: The maximum resident set size (KB) = 1196268 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_clm_lake_debug_intel -Checking test 109 rap_clm_lake_debug_intel results .... +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 = 329.884234 - 0: The maximum resident set size (KB) = 1165696 + 0: The total amount of wall time = 330.736515 + 0: The maximum resident set size (KB) = 1196780 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_flake_debug_intel -Checking test 110 rap_flake_debug_intel results .... +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 = 270.880962 - 0: The maximum resident set size (KB) = 1195740 + 0: The total amount of wall time = 277.544200 + 0: The maximum resident set size (KB) = 1206344 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/gnv1_c96_no_nest_debug_intel -Checking test 111 gnv1_c96_no_nest_debug_intel results .... +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 Comparing sfcf002.nc .........OK @@ -4204,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 = 474.932786 - 0: The maximum resident set size (KB) = 1195424 + 0: The total amount of wall time = 476.857204 + 0: The maximum resident set size (KB) = 1196376 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_wam_debug_intel -Checking test 112 control_wam_debug_intel results .... +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 = 275.176002 - 0: The maximum resident set size (KB) = 479260 + 0: The total amount of wall time = 274.219321 + 0: The maximum resident set size (KB) = 480108 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +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 Comparing phyf000.nc .........OK @@ -4234,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 = 220.395526 - 0: The maximum resident set size (KB) = 1153188 + 0: The total amount of wall time = 222.102732 + 0: The maximum resident set size (KB) = 1121988 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_control_dyn32_phy32_intel -Checking test 114 rap_control_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4288,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.656924 - 0: The maximum resident set size (KB) = 1046944 + 0: The total amount of wall time = 369.377136 + 0: The maximum resident set size (KB) = 1037496 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_dyn32_phy32_intel -Checking test 115 hrrr_control_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4342,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 = 190.010130 - 0: The maximum resident set size (KB) = 974616 + 0: The total amount of wall time = 192.103901 + 0: The maximum resident set size (KB) = 978968 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_2threads_dyn32_phy32_intel -Checking test 116 rap_2threads_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4396,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 = 350.599287 - 0: The maximum resident set size (KB) = 1086456 + 0: The total amount of wall time = 348.367430 + 0: The maximum resident set size (KB) = 1078840 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_2threads_dyn32_phy32_intel -Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4450,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 = 176.901021 - 0: The maximum resident set size (KB) = 957912 + 0: The total amount of wall time = 176.796165 + 0: The maximum resident set size (KB) = 961204 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_decomp_dyn32_phy32_intel -Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4504,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 = 202.840019 - 0: The maximum resident set size (KB) = 946468 + 0: The total amount of wall time = 201.489600 + 0: The maximum resident set size (KB) = 917744 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_restart_dyn32_phy32_intel -Checking test 119 rap_restart_dyn32_phy32_intel results .... +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 Comparing GFSFLX.GrbF12 .........OK @@ -4550,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.816407 - 0: The maximum resident set size (KB) = 1032932 + 0: The total amount of wall time = 276.735808 + 0: The maximum resident set size (KB) = 1036056 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_restart_dyn32_phy32_intel -Checking test 120 hrrr_control_restart_dyn32_phy32_intel results .... +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 = 99.846867 - 0: The maximum resident set size (KB) = 924620 + 0: The total amount of wall time = 100.460628 + 0: The maximum resident set size (KB) = 926544 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/conus13km_control_intel -Checking test 121 conus13km_control_intel results .... +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 Comparing sfcf002.nc .........OK @@ -4587,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 = 112.023851 - 0: The maximum resident set size (KB) = 1194248 + 0: The total amount of wall time = 109.867316 + 0: The maximum resident set size (KB) = 1181532 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/conus13km_2threads_intel -Checking test 122 conus13km_2threads_intel results .... +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 = 42.823199 - 0: The maximum resident set size (KB) = 1113312 + 0: The total amount of wall time = 43.454959 + 0: The maximum resident set size (KB) = 1114984 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/conus13km_restart_mismatch_intel -Checking test 123 conus13km_restart_mismatch_intel results .... +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 = 61.386720 - 0: The maximum resident set size (KB) = 1071156 + 0: The total amount of wall time = 63.485398 + 0: The maximum resident set size (KB) = 1105080 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_control_dyn64_phy32_intel -Checking test 124 rap_control_dyn64_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4667,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 = 243.176384 - 0: The maximum resident set size (KB) = 990344 + 0: The total amount of wall time = 240.340113 + 0: The maximum resident set size (KB) = 984388 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_control_debug_dyn32_phy32_intel -Checking test 125 rap_control_debug_dyn32_phy32_intel results .... +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.485173 - 0: The maximum resident set size (KB) = 1084528 + 0: The total amount of wall time = 269.622936 + 0: The maximum resident set size (KB) = 1082972 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_debug_dyn32_phy32_intel -Checking test 126 hrrr_control_debug_dyn32_phy32_intel results .... +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 = 267.766112 - 0: The maximum resident set size (KB) = 1083352 + 0: The total amount of wall time = 266.892232 + 0: The maximum resident set size (KB) = 1038680 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/conus13km_debug_intel -Checking test 127 conus13km_debug_intel results .... +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 Comparing atmf000.nc .........OK @@ -4716,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 = 817.097646 - 0: The maximum resident set size (KB) = 1223012 + 0: The total amount of wall time = 827.271325 + 0: The maximum resident set size (KB) = 1222140 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/conus13km_debug_qr_intel -Checking test 128 conus13km_debug_qr_intel results .... +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 Comparing atmf000.nc .........OK @@ -4737,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 = 813.952591 - 0: The maximum resident set size (KB) = 915164 + 0: The total amount of wall time = 828.850237 + 0: The maximum resident set size (KB) = 922196 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/conus13km_debug_2threads_intel -Checking test 129 conus13km_debug_2threads_intel results .... +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 = 469.032224 - 0: The maximum resident set size (KB) = 1146816 + 0: The total amount of wall time = 466.672947 + 0: The maximum resident set size (KB) = 1149084 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/conus13km_radar_tten_debug_intel -Checking test 130 conus13km_radar_tten_debug_intel results .... +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 = 833.603027 - 0: The maximum resident set size (KB) = 1274060 + 0: The total amount of wall time = 815.780439 + 0: The maximum resident set size (KB) = 1298932 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_control_dyn64_phy32_debug_intel -Checking test 131 rap_control_dyn64_phy32_debug_intel results .... +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 = 279.676276 - 0: The maximum resident set size (KB) = 1114012 + 0: The total amount of wall time = 278.675066 + 0: The maximum resident set size (KB) = 1108464 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hafs_regional_atm_intel -Checking test 132 hafs_regional_atm_intel results .... +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 = 269.501782 - 0: The maximum resident set size (KB) = 734192 + 0: The total amount of wall time = 268.251409 + 0: The maximum resident set size (KB) = 732788 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 133 hafs_regional_atm_thompson_gfdlsf_intel results .... +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 = 336.399618 - 0: The maximum resident set size (KB) = 1112908 + 0: The total amount of wall time = 340.348863 + 0: The maximum resident set size (KB) = 1109796 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hafs_regional_atm_ocn_intel -Checking test 134 hafs_regional_atm_ocn_intel results .... +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 Comparing archv.2019_241_06.a .........OK @@ -4820,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 = 391.224493 - 0: The maximum resident set size (KB) = 818648 + 0: The total amount of wall time = 389.934656 + 0: The maximum resident set size (KB) = 825280 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hafs_regional_atm_wav_intel -Checking test 135 hafs_regional_atm_wav_intel results .... +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 Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4836,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 = 761.577762 - 0: The maximum resident set size (KB) = 851352 + 0: The total amount of wall time = 762.025316 + 0: The maximum resident set size (KB) = 866276 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hafs_regional_atm_ocn_wav_intel -Checking test 136 hafs_regional_atm_ocn_wav_intel results .... +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 Comparing archv.2019_241_06.a .........OK @@ -4854,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 = 853.208026 - 0: The maximum resident set size (KB) = 878048 + 0: The total amount of wall time = 873.687802 + 0: The maximum resident set size (KB) = 882912 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hafs_regional_1nest_atm_intel -Checking test 137 hafs_regional_1nest_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4883,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 = 304.210652 - 0: The maximum resident set size (KB) = 503232 + 0: The total amount of wall time = 305.352891 + 0: The maximum resident set size (KB) = 497824 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hafs_regional_telescopic_2nests_atm_intel -Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4899,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 = 375.823352 - 0: The maximum resident set size (KB) = 521364 + 0: The total amount of wall time = 369.952929 + 0: The maximum resident set size (KB) = 520876 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hafs_global_1nest_atm_intel -Checking test 139 hafs_global_1nest_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4916,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 ............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.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 .........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 .........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 @@ -4953,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.855899 - 0: The maximum resident set size (KB) = 371072 + 0: The total amount of wall time = 146.054216 + 0: The maximum resident set size (KB) = 373172 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hafs_global_multiple_4nests_atm_intel -Checking test 140 hafs_global_multiple_4nests_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4997,9 +5170,9 @@ Checking test 140 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.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 ............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 @@ -5020,10 +5193,10 @@ Checking test 140 hafs_global_multiple_4nests_atm_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 ............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.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 @@ -5042,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 = 401.382456 - 0: The maximum resident set size (KB) = 472544 + 0: The total amount of wall time = 404.238107 + 0: The maximum resident set size (KB) = 472672 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hafs_regional_specified_moving_1nest_atm_intel -Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -5058,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 = 202.587865 - 0: The maximum resident set size (KB) = 533120 + 0: The total amount of wall time = 204.265690 + 0: The maximum resident set size (KB) = 533760 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hafs_regional_storm_following_1nest_atm_intel -Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -5087,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 = 190.550933 - 0: The maximum resident set size (KB) = 535340 + 0: The total amount of wall time = 193.102125 + 0: The maximum resident set size (KB) = 531940 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -5103,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 = 232.517104 - 0: The maximum resident set size (KB) = 589024 + 0: The total amount of wall time = 234.048993 + 0: The maximum resident set size (KB) = 582600 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hafs_global_storm_following_1nest_atm_intel -Checking test 144 hafs_global_storm_following_1nest_atm_intel results .... +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 = 63.621992 - 0: The maximum resident set size (KB) = 382428 + 0: The total amount of wall time = 60.818529 + 0: The maximum resident set size (KB) = 408652 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/gnv1_nested_intel -Checking test 145 gnv1_nested_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -5134,19 +5307,19 @@ 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 .........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.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.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 Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK @@ -5171,29 +5344,47 @@ 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 = 225.142753 - 0: The maximum resident set size (KB) = 801384 + 0: The total amount of wall time = 228.870970 + 0: The maximum resident set size (KB) = 776912 -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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +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 = 731.699541 - 0: The maximum resident set size (KB) = 553720 + 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-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 + 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 = 490.524840 + 0: The maximum resident set size (KB) = 668696 -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 = /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_2152/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -5203,162 +5394,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 = 496.824763 - 0: The maximum resident set size (KB) = 639760 + 0: The total amount of wall time = 494.740532 + 0: The maximum resident set size (KB) = 739776 -Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_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_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hafs_regional_docn_intel -Checking test 148 hafs_regional_docn_intel results .... +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 + 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.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-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 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.319409 - 0: The maximum resident set size (KB) = 824516 + 0: The total amount of wall time = 361.132313 + 0: The maximum resident set size (KB) = 828404 -Test 148 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hafs_regional_docn_oisst_intel -Checking test 149 hafs_regional_docn_oisst_intel results .... +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 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.836419 - 0: The maximum resident set size (KB) = 808344 + 0: The total amount of wall time = 364.396912 + 0: The maximum resident set size (KB) = 804148 -Test 149 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hafs_regional_datm_cdeps_intel -Checking test 150 hafs_regional_datm_cdeps_intel results .... +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 = 945.324975 - 0: The maximum resident set size (KB) = 1202840 + 0: The total amount of wall time = 963.890476 + 0: The maximum resident set size (KB) = 1200992 -Test 150 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/datm_cdeps_control_cfsr_intel -Checking test 151 datm_cdeps_control_cfsr_intel results .... +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 = 148.270630 - 0: The maximum resident set size (KB) = 1126024 + 0: The total amount of wall time = 150.066139 + 0: The maximum resident set size (KB) = 1117592 -Test 151 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/datm_cdeps_restart_cfsr_intel -Checking test 152 datm_cdeps_restart_cfsr_intel results .... +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 = 90.132323 - 0: The maximum resident set size (KB) = 1073360 + 0: The total amount of wall time = 87.432283 + 0: The maximum resident set size (KB) = 1072412 -Test 152 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/datm_cdeps_control_gefs_intel -Checking test 153 datm_cdeps_control_gefs_intel results .... +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 = 145.013552 - 0: The maximum resident set size (KB) = 1010408 + 0: The total amount of wall time = 143.574955 + 0: The maximum resident set size (KB) = 1016372 -Test 153 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/datm_cdeps_iau_gefs_intel -Checking test 154 datm_cdeps_iau_gefs_intel results .... +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.880435 - 0: The maximum resident set size (KB) = 1018488 + 0: The total amount of wall time = 145.490575 + 0: The maximum resident set size (KB) = 1005600 -Test 154 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/datm_cdeps_stochy_gefs_intel -Checking test 155 datm_cdeps_stochy_gefs_intel results .... +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 = 143.645458 - 0: The maximum resident set size (KB) = 1002656 + 0: The total amount of wall time = 144.432653 + 0: The maximum resident set size (KB) = 1008000 -Test 155 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/datm_cdeps_ciceC_cfsr_intel -Checking test 156 datm_cdeps_ciceC_cfsr_intel results .... +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 = 146.436581 - 0: The maximum resident set size (KB) = 1122056 + 0: The total amount of wall time = 154.926239 + 0: The maximum resident set size (KB) = 1120540 -Test 156 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/datm_cdeps_bulk_cfsr_intel -Checking test 157 datm_cdeps_bulk_cfsr_intel results .... +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 = 151.040972 - 0: The maximum resident set size (KB) = 1112732 + 0: The total amount of wall time = 148.534464 + 0: The maximum resident set size (KB) = 1131340 -Test 157 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/datm_cdeps_bulk_gefs_intel -Checking test 158 datm_cdeps_bulk_gefs_intel results .... +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 = 148.983402 - 0: The maximum resident set size (KB) = 1009860 + 0: The total amount of wall time = 145.030058 + 0: The maximum resident set size (KB) = 998072 -Test 158 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/datm_cdeps_mx025_cfsr_intel -Checking test 159 datm_cdeps_mx025_cfsr_intel results .... +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 Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5366,15 +5574,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 = 364.652929 - 0: The maximum resident set size (KB) = 1037756 + 0: The total amount of wall time = 397.722987 + 0: The maximum resident set size (KB) = 1057220 -Test 159 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/datm_cdeps_mx025_gefs_intel -Checking test 160 datm_cdeps_mx025_gefs_intel results .... +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 Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5382,78 +5590,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 = 368.134422 - 0: The maximum resident set size (KB) = 1026164 + 0: The total amount of wall time = 390.037106 + 0: The maximum resident set size (KB) = 1035968 -Test 160 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/datm_cdeps_multiple_files_cfsr_intel -Checking test 161 datm_cdeps_multiple_files_cfsr_intel results .... +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 = 149.248545 - 0: The maximum resident set size (KB) = 1124352 + 0: The total amount of wall time = 148.882192 + 0: The maximum resident set size (KB) = 1119668 -Test 161 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/datm_cdeps_3072x1536_cfsr_intel -Checking test 162 datm_cdeps_3072x1536_cfsr_intel results .... +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 = 219.593560 - 0: The maximum resident set size (KB) = 2462924 + 0: The total amount of wall time = 241.164374 + 0: The maximum resident set size (KB) = 2434792 -Test 162 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/datm_cdeps_gfs_intel -Checking test 163 datm_cdeps_gfs_intel results .... +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 = 218.572525 - 0: The maximum resident set size (KB) = 2417048 + 0: The total amount of wall time = 227.810481 + 0: The maximum resident set size (KB) = 2421400 -Test 163 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/datm_cdeps_debug_cfsr_intel -Checking test 164 datm_cdeps_debug_cfsr_intel results .... +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 = 349.520891 - 0: The maximum resident set size (KB) = 1050560 + 0: The total amount of wall time = 353.052557 + 0: The maximum resident set size (KB) = 1051916 -Test 164 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/datm_cdeps_control_cfsr_faster_intel -Checking test 165 datm_cdeps_control_cfsr_faster_intel results .... +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.638170 - 0: The maximum resident set size (KB) = 1134788 + 0: The total amount of wall time = 147.774749 + 0: The maximum resident set size (KB) = 1125132 -Test 165 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/datm_cdeps_lnd_gswp3_intel -Checking test 166 datm_cdeps_lnd_gswp3_intel results .... +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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5461,15 +5669,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 = 37.066330 - 0: The maximum resident set size (KB) = 250968 + 0: The total amount of wall time = 35.072780 + 0: The maximum resident set size (KB) = 252692 -Test 166 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/datm_cdeps_lnd_era5_intel -Checking test 167 datm_cdeps_lnd_era5_intel results .... +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 Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5477,15 +5685,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 = 41.078451 - 0: The maximum resident set size (KB) = 317708 + 0: The total amount of wall time = 36.877766 + 0: The maximum resident set size (KB) = 318020 -Test 167 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/datm_cdeps_lnd_era5_rst_intel -Checking test 168 datm_cdeps_lnd_era5_rst_intel results .... +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 Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5493,15 +5701,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 = 22.671542 - 0: The maximum resident set size (KB) = 315996 + 0: The total amount of wall time = 20.974372 + 0: The maximum resident set size (KB) = 315448 -Test 168 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_p8_atmlnd_sbs_intel -Checking test 169 control_p8_atmlnd_sbs_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -5589,15 +5797,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 = 258.415410 - 0: The maximum resident set size (KB) = 1591480 + 0: The total amount of wall time = 242.007786 + 0: The maximum resident set size (KB) = 1586988 -Test 169 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_p8_atmlnd_intel -Checking test 170 control_p8_atmlnd_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -5685,15 +5893,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 = 258.099831 - 0: The maximum resident set size (KB) = 1600020 + 0: The total amount of wall time = 239.376457 + 0: The maximum resident set size (KB) = 1587492 -Test 170 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_restart_p8_atmlnd_intel -Checking test 171 control_restart_p8_atmlnd_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -5713,15 +5921,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 = 127.645734 - 0: The maximum resident set size (KB) = 889176 + 0: The total amount of wall time = 126.241198 + 0: The maximum resident set size (KB) = 890364 -Test 171 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/atmwav_control_noaero_p8_intel -Checking test 172 atmwav_control_noaero_p8_intel results .... +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 Comparing atmf000.nc .........OK @@ -5763,15 +5971,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 = 100.212894 - 0: The maximum resident set size (KB) = 1621512 + 0: The total amount of wall time = 94.029822 + 0: The maximum resident set size (KB) = 1648372 -Test 172 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_atmwav_intel -Checking test 173 control_atmwav_intel results .... +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 Comparing atmf000.nc .........OK @@ -5814,15 +6022,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 = 91.070729 - 0: The maximum resident set size (KB) = 667752 + 0: The total amount of wall time = 87.313345 + 0: The maximum resident set size (KB) = 668144 -Test 173 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/atmaero_control_p8_intel -Checking test 174 atmaero_control_p8_intel results .... +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 Comparing atmf000.nc .........OK @@ -5865,15 +6073,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 = 226.896051 - 0: The maximum resident set size (KB) = 3005828 + 0: The total amount of wall time = 227.427292 + 0: The maximum resident set size (KB) = 3019252 -Test 174 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/atmaero_control_p8_rad_intel -Checking test 175 atmaero_control_p8_rad_intel results .... +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 Comparing atmf000.nc .........OK @@ -5916,15 +6124,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.898971 - 0: The maximum resident set size (KB) = 3072764 + 0: The total amount of wall time = 271.239249 + 0: The maximum resident set size (KB) = 3087240 -Test 175 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/atmaero_control_p8_rad_micro_intel -Checking test 176 atmaero_control_p8_rad_micro_intel results .... +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 Comparing atmf000.nc .........OK @@ -5967,15 +6175,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 = 289.996240 - 0: The maximum resident set size (KB) = 3097516 + 0: The total amount of wall time = 289.311945 + 0: The maximum resident set size (KB) = 3075060 -Test 176 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/regional_atmaq_debug_intel -Checking test 177 regional_atmaq_debug_intel results .... +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 Comparing atmf000.nc .........OK @@ -5988,15 +6196,15 @@ Checking test 177 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 = 1190.848177 - 0: The maximum resident set size (KB) = 4353684 + 0: The total amount of wall time = 1152.403973 + 0: The maximum resident set size (KB) = 4508272 -Test 177 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_c48_gnu -Checking test 178 control_c48_gnu results .... +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 Comparing atmf000.nc .........OK @@ -6034,15 +6242,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 = 689.960566 -0: The maximum resident set size (KB) = 789816 +0: The total amount of wall time = 691.562076 +0: The maximum resident set size (KB) = 792572 -Test 178 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_stochy_gnu -Checking test 179 control_stochy_gnu results .... +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 Comparing atmf000.nc .........OK @@ -6052,15 +6260,15 @@ Checking test 179 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 223.721040 - 0: The maximum resident set size (KB) = 552568 + 0: The total amount of wall time = 231.638077 + 0: The maximum resident set size (KB) = 554164 -Test 179 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_ras_gnu -Checking test 180 control_ras_gnu results .... +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 Comparing atmf000.nc .........OK @@ -6070,15 +6278,15 @@ Checking test 180 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 281.703829 - 0: The maximum resident set size (KB) = 555988 + 0: The total amount of wall time = 276.494916 + 0: The maximum resident set size (KB) = 560776 -Test 180 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_p8_gnu -Checking test 181 control_p8_gnu results .... +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 Comparing sfcf024.nc .........OK @@ -6124,15 +6332,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 = 276.325729 - 0: The maximum resident set size (KB) = 1308940 + 0: The total amount of wall time = 281.525717 + 0: The maximum resident set size (KB) = 1310400 -Test 181 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_p8_ugwpv1_gnu -Checking test 182 control_p8_ugwpv1_gnu results .... +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 Comparing sfcf024.nc .........OK @@ -6178,15 +6386,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 = 264.924224 - 0: The maximum resident set size (KB) = 1308076 + 0: The total amount of wall time = 265.446160 + 0: The maximum resident set size (KB) = 1311328 -Test 182 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_flake_gnu -Checking test 183 control_flake_gnu results .... +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 Comparing atmf000.nc .........OK @@ -6196,15 +6404,15 @@ Checking test 183 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.820762 - 0: The maximum resident set size (KB) = 599016 + 0: The total amount of wall time = 339.142352 + 0: The maximum resident set size (KB) = 596000 -Test 183 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_control_gnu -Checking test 184 rap_control_gnu results .... +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 Comparing sfcf024.nc .........OK @@ -6250,15 +6458,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 = 694.719045 - 0: The maximum resident set size (KB) = 896112 + 0: The total amount of wall time = 679.992419 + 0: The maximum resident set size (KB) = 899068 -Test 184 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_decomp_gnu -Checking test 185 rap_decomp_gnu results .... +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 Comparing sfcf024.nc .........OK @@ -6304,15 +6512,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 = 695.552128 - 0: The maximum resident set size (KB) = 895916 + 0: The total amount of wall time = 687.074137 + 0: The maximum resident set size (KB) = 897532 -Test 185 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_2threads_gnu -Checking test 186 rap_2threads_gnu results .... +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 Comparing sfcf024.nc .........OK @@ -6358,15 +6566,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 = 623.479528 - 0: The maximum resident set size (KB) = 970736 + 0: The total amount of wall time = 615.952800 + 0: The maximum resident set size (KB) = 978108 -Test 186 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_restart_gnu -Checking test 187 rap_restart_gnu results .... +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 Comparing GFSFLX.GrbF24 .........OK @@ -6404,15 +6612,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 = 349.680417 - 0: The maximum resident set size (KB) = 624448 + 0: The total amount of wall time = 348.016069 + 0: The maximum resident set size (KB) = 626008 -Test 187 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_sfcdiff_gnu -Checking test 188 rap_sfcdiff_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -6458,15 +6666,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 = 687.902981 - 0: The maximum resident set size (KB) = 892916 + 0: The total amount of wall time = 685.363424 + 0: The maximum resident set size (KB) = 897336 -Test 188 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_sfcdiff_decomp_gnu -Checking test 189 rap_sfcdiff_decomp_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -6512,15 +6720,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 = 698.755188 - 0: The maximum resident set size (KB) = 894760 + 0: The total amount of wall time = 691.610491 + 0: The maximum resident set size (KB) = 900452 -Test 189 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_sfcdiff_restart_gnu -Checking test 190 rap_sfcdiff_restart_gnu results .... +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 Comparing GFSFLX.GrbF12 .........OK @@ -6558,15 +6766,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 = 510.941117 - 0: The maximum resident set size (KB) = 630820 + 0: The total amount of wall time = 517.319127 + 0: The maximum resident set size (KB) = 629892 -Test 190 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_gnu -Checking test 191 hrrr_control_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -6612,15 +6820,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.330222 - 0: The maximum resident set size (KB) = 892588 + 0: The total amount of wall time = 347.301036 + 0: The maximum resident set size (KB) = 891428 -Test 191 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_noqr_gnu -Checking test 192 hrrr_control_noqr_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -6666,15 +6874,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.388262 - 0: The maximum resident set size (KB) = 880364 + 0: The total amount of wall time = 346.166806 + 0: The maximum resident set size (KB) = 881900 -Test 192 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_2threads_gnu -Checking test 193 hrrr_control_2threads_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -6720,15 +6928,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 = 305.173973 - 0: The maximum resident set size (KB) = 973136 + 0: The total amount of wall time = 302.411006 + 0: The maximum resident set size (KB) = 972480 -Test 193 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_decomp_gnu -Checking test 194 hrrr_control_decomp_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -6774,43 +6982,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 = 352.459054 - 0: The maximum resident set size (KB) = 893704 + 0: The total amount of wall time = 348.089624 + 0: The maximum resident set size (KB) = 890524 -Test 194 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_restart_gnu -Checking test 195 hrrr_control_restart_gnu results .... +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 = 181.820726 - 0: The maximum resident set size (KB) = 612188 + 0: The total amount of wall time = 184.342102 + 0: The maximum resident set size (KB) = 610328 -Test 195 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_restart_noqr_gnu -Checking test 196 hrrr_control_restart_noqr_gnu results .... +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 = 205.347437 - 0: The maximum resident set size (KB) = 703480 + 0: The total amount of wall time = 181.833962 + 0: The maximum resident set size (KB) = 705356 -Test 196 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rrfs_v1beta_gnu -Checking test 197 rrfs_v1beta_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -6856,225 +7064,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 = 670.330855 - 0: The maximum resident set size (KB) = 891020 + 0: The total amount of wall time = 662.629191 + 0: The maximum resident set size (KB) = 893508 -Test 197 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_diag_debug_gnu -Checking test 198 control_diag_debug_gnu results .... +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 = 85.195905 - 0: The maximum resident set size (KB) = 590228 + 0: The total amount of wall time = 82.761051 + 0: The maximum resident set size (KB) = 595716 -Test 198 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/regional_debug_gnu -Checking test 199 regional_debug_gnu results .... +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 = 441.969929 - 0: The maximum resident set size (KB) = 597052 + 0: The total amount of wall time = 446.316198 + 0: The maximum resident set size (KB) = 602772 -Test 199 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_control_debug_gnu -Checking test 200 rap_control_debug_gnu results .... +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 = 142.520685 - 0: The maximum resident set size (KB) = 906144 + 0: The total amount of wall time = 139.585373 + 0: The maximum resident set size (KB) = 911620 -Test 200 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_debug_gnu -Checking test 201 hrrr_control_debug_gnu results .... +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 = 134.168266 - 0: The maximum resident set size (KB) = 902860 + 0: The total amount of wall time = 136.391425 + 0: The maximum resident set size (KB) = 903900 -Test 201 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_gf_debug_gnu -Checking test 202 hrrr_gf_debug_gnu results .... +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 = 142.086547 - 0: The maximum resident set size (KB) = 904288 + 0: The total amount of wall time = 142.635656 + 0: The maximum resident set size (KB) = 909744 -Test 202 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_c3_debug_gnu -Checking test 203 hrrr_c3_debug_gnu results .... +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.261204 - 0: The maximum resident set size (KB) = 904128 + 0: The total amount of wall time = 143.597582 + 0: The maximum resident set size (KB) = 912580 -Test 203 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_diag_debug_gnu -Checking test 204 rap_diag_debug_gnu results .... +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 = 152.181171 - 0: The maximum resident set size (KB) = 996712 + 0: The total amount of wall time = 152.461141 + 0: The maximum resident set size (KB) = 995340 -Test 204 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 205 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +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 = 219.984596 - 0: The maximum resident set size (KB) = 903952 + 0: The total amount of wall time = 219.888780 + 0: The maximum resident set size (KB) = 916056 -Test 205 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_progcld_thompson_debug_gnu -Checking test 206 rap_progcld_thompson_debug_gnu results .... +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 = 138.589957 - 0: The maximum resident set size (KB) = 908620 + 0: The total amount of wall time = 141.232857 + 0: The maximum resident set size (KB) = 911112 -Test 206 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rrfs_v1beta_debug_gnu -Checking test 207 rrfs_v1beta_debug_gnu results .... +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 = 142.222379 - 0: The maximum resident set size (KB) = 906820 + 0: The total amount of wall time = 138.914445 + 0: The maximum resident set size (KB) = 908812 -Test 207 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_ras_debug_gnu -Checking test 208 control_ras_debug_gnu results .... +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 = 81.067959 - 0: The maximum resident set size (KB) = 542744 + 0: The total amount of wall time = 82.240976 + 0: The maximum resident set size (KB) = 548552 -Test 208 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_stochy_debug_gnu -Checking test 209 control_stochy_debug_gnu results .... +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 = 123.412317 - 0: The maximum resident set size (KB) = 536060 + 0: The total amount of wall time = 116.627962 + 0: The maximum resident set size (KB) = 544488 -Test 209 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_debug_p8_gnu -Checking test 210 control_debug_p8_gnu results .... +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 = 89.224712 - 0: The maximum resident set size (KB) = 1287912 + 0: The total amount of wall time = 86.569495 + 0: The maximum resident set size (KB) = 1290728 -Test 210 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_flake_debug_gnu -Checking test 211 rap_flake_debug_gnu results .... +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 = 142.843913 - 0: The maximum resident set size (KB) = 906380 + 0: The total amount of wall time = 139.710755 + 0: The maximum resident set size (KB) = 910576 -Test 211 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_clm_lake_debug_gnu -Checking test 212 rap_clm_lake_debug_gnu results .... +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 = 161.170047 - 0: The maximum resident set size (KB) = 911092 + 0: The total amount of wall time = 157.281996 + 0: The maximum resident set size (KB) = 915948 -Test 212 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/gnv1_c96_no_nest_debug_gnu -Checking test 213 gnv1_c96_no_nest_debug_gnu results .... +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 Comparing sfcf002.nc .........OK @@ -7114,27 +7322,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 = 239.051390 - 0: The maximum resident set size (KB) = 911052 + 0: The total amount of wall time = 237.039888 + 0: The maximum resident set size (KB) = 915012 -Test 213 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/control_wam_debug_gnu -Checking test 214 control_wam_debug_gnu results .... +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 = 138.523570 - 0: The maximum resident set size (KB) = 244664 + 0: The total amount of wall time = 135.846867 + 0: The maximum resident set size (KB) = 241652 -Test 214 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_control_dyn32_phy32_gnu -Checking test 215 rap_control_dyn32_phy32_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -7180,15 +7388,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 = 698.391540 - 0: The maximum resident set size (KB) = 750748 + 0: The total amount of wall time = 700.413500 + 0: The maximum resident set size (KB) = 750684 -Test 215 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_dyn32_phy32_gnu -Checking test 216 hrrr_control_dyn32_phy32_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -7234,15 +7442,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 = 357.835808 - 0: The maximum resident set size (KB) = 746324 + 0: The total amount of wall time = 358.390809 + 0: The maximum resident set size (KB) = 748732 -Test 216 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_2threads_dyn32_phy32_gnu -Checking test 217 rap_2threads_dyn32_phy32_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -7288,15 +7496,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 = 628.425592 - 0: The maximum resident set size (KB) = 798868 + 0: The total amount of wall time = 621.932147 + 0: The maximum resident set size (KB) = 808344 -Test 217 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 218 hrrr_control_2threads_dyn32_phy32_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -7342,15 +7550,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 = 309.523594 - 0: The maximum resident set size (KB) = 803352 + 0: The total amount of wall time = 309.290036 + 0: The maximum resident set size (KB) = 806824 -Test 218 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 219 hrrr_control_decomp_dyn32_phy32_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -7396,15 +7604,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.644721 - 0: The maximum resident set size (KB) = 748928 + 0: The total amount of wall time = 355.590403 + 0: The maximum resident set size (KB) = 749944 -Test 219 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_restart_dyn32_phy32_gnu -Checking test 220 rap_restart_dyn32_phy32_gnu results .... +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 Comparing GFSFLX.GrbF12 .........OK @@ -7442,29 +7650,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 = 523.669332 - 0: The maximum resident set size (KB) = 596680 + 0: The total amount of wall time = 523.943314 + 0: The maximum resident set size (KB) = 596404 -Test 220 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_restart_dyn32_phy32_gnu -Checking test 221 hrrr_control_restart_dyn32_phy32_gnu results .... +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 = 184.426651 - 0: The maximum resident set size (KB) = 579760 + 0: The total amount of wall time = 185.822177 + 0: The maximum resident set size (KB) = 586884 -Test 221 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/conus13km_control_gnu -Checking test 222 conus13km_control_gnu results .... +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 Comparing sfcf002.nc .........OK @@ -7479,41 +7687,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 = 244.310391 - 0: The maximum resident set size (KB) = 901828 + 0: The total amount of wall time = 240.706840 + 0: The maximum resident set size (KB) = 902216 -Test 222 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/conus13km_2threads_gnu -Checking test 223 conus13km_2threads_gnu results .... +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 = 100.839174 - 0: The maximum resident set size (KB) = 929500 + 0: The total amount of wall time = 101.555596 + 0: The maximum resident set size (KB) = 935576 -Test 223 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/conus13km_restart_mismatch_gnu -Checking test 224 conus13km_restart_mismatch_gnu results .... +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 = 127.146546 - 0: The maximum resident set size (KB) = 598152 + 0: The total amount of wall time = 128.036469 + 0: The maximum resident set size (KB) = 601000 -Test 224 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_control_dyn64_phy32_gnu -Checking test 225 rap_control_dyn64_phy32_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -7559,43 +7767,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 = 407.216088 - 0: The maximum resident set size (KB) = 781448 + 0: The total amount of wall time = 407.333721 + 0: The maximum resident set size (KB) = 784616 -Test 225 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_control_debug_dyn32_phy32_gnu -Checking test 226 rap_control_debug_dyn32_phy32_gnu results .... +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 = 141.207686 - 0: The maximum resident set size (KB) = 760804 + 0: The total amount of wall time = 143.371318 + 0: The maximum resident set size (KB) = 767284 -Test 226 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/hrrr_control_debug_dyn32_phy32_gnu -Checking test 227 hrrr_control_debug_dyn32_phy32_gnu results .... +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.306118 - 0: The maximum resident set size (KB) = 761680 + 0: The total amount of wall time = 139.473434 + 0: The maximum resident set size (KB) = 761488 -Test 227 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/conus13km_debug_gnu -Checking test 228 conus13km_debug_gnu results .... +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 Comparing atmf000.nc .........OK @@ -7608,15 +7816,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 = 418.152650 - 0: The maximum resident set size (KB) = 918204 + 0: The total amount of wall time = 413.155023 + 0: The maximum resident set size (KB) = 918220 -Test 228 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/conus13km_debug_qr_gnu -Checking test 229 conus13km_debug_qr_gnu results .... +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 Comparing atmf000.nc .........OK @@ -7629,57 +7837,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 = 412.525763 - 0: The maximum resident set size (KB) = 633148 + 0: The total amount of wall time = 416.594942 + 0: The maximum resident set size (KB) = 634240 -Test 229 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/conus13km_debug_2threads_gnu -Checking test 230 conus13km_debug_2threads_gnu results .... +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 = 251.229622 - 0: The maximum resident set size (KB) = 951596 + 0: The total amount of wall time = 252.487438 + 0: The maximum resident set size (KB) = 954404 -Test 230 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/conus13km_radar_tten_debug_gnu -Checking test 231 conus13km_radar_tten_debug_gnu results .... +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 = 412.418079 - 0: The maximum resident set size (KB) = 985508 + 0: The total amount of wall time = 421.009362 + 0: The maximum resident set size (KB) = 985376 -Test 231 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/rap_control_dyn64_phy32_debug_gnu -Checking test 232 rap_control_dyn64_phy32_debug_gnu results .... +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 = 143.467441 - 0: The maximum resident set size (KB) = 786208 + 0: The total amount of wall time = 148.924821 + 0: The maximum resident set size (KB) = 789568 -Test 232 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_control_p8_gnu -Checking test 233 cpld_control_p8_gnu results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -7743,15 +7951,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 = 645.429835 - 0: The maximum resident set size (KB) = 1504236 + 0: The total amount of wall time = 660.268049 + 0: The maximum resident set size (KB) = 1512120 -Test 233 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_control_nowave_noaero_p8_gnu -Checking test 234 cpld_control_nowave_noaero_p8_gnu results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -7812,15 +8020,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.230008 - 0: The maximum resident set size (KB) = 1400220 + 0: The total amount of wall time = 393.478932 + 0: The maximum resident set size (KB) = 1399772 -Test 234 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_debug_p8_gnu -Checking test 235 cpld_debug_p8_gnu results .... +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 Comparing sfcf003.tile3.nc .........OK @@ -7872,15 +8080,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 = 361.940574 - 0: The maximum resident set size (KB) = 1518244 + 0: The total amount of wall time = 361.808593 + 0: The maximum resident set size (KB) = 1515152 -Test 235 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_control_pdlib_p8_gnu -Checking test 236 cpld_control_pdlib_p8_gnu results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -7943,15 +8151,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 = 1321.249518 - 0: The maximum resident set size (KB) = 1377160 + 0: The total amount of wall time = 1317.468188 + 0: The maximum resident set size (KB) = 1374484 -Test 236 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/cpld_debug_pdlib_p8_gnu -Checking test 237 cpld_debug_pdlib_p8_gnu results .... +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 Comparing sfcf003.tile3.nc .........OK @@ -8002,25 +8210,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 = 768.757296 - 0: The maximum resident set size (KB) = 1389200 + 0: The total amount of wall time = 752.117199 + 0: The maximum resident set size (KB) = 1384624 -Test 237 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/Fernando.Andrade-maldonado/FV3_RT/rt_2152/datm_cdeps_control_cfsr_gnu -Checking test 238 datm_cdeps_control_cfsr_gnu results .... +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 = 161.491129 - 0: The maximum resident set size (KB) = 698720 + 0: The total amount of wall time = 188.120099 + 0: The maximum resident set size (KB) = 695308 -Test 238 datm_cdeps_control_cfsr_gnu PASS +Test 243 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 30 19:12:44 UTC 2024 -Elapsed time: 02h:56m:38s. 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 bc0d96f4f8..9689358641 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,75 +1,76 @@ -Tue Jan 30 08:24:50 CST 2024 +Thu Feb 8 08:54:53 AM CST 2024 Start Regression test -Testing UFSWM Hash: ec848db8c3a6942ff39becb62b9742902b80ade3 +Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 13ed05982efc95c077efc3b9609688554e3a854c CMEPS-interface/CMEPS (cmeps_v0.4.1-2302-g13ed059) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 400e2129e147212ae2820368a8e0de6fd2492b36 FV3 (remotes/origin/nssl_mp_init) + 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 209 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 268 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 462 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 265 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 262 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 323 seconds. -DAPP=ATM -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 atm_gnu elapsed time 220 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 410 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 170 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 393 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 499 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 567 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 570 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 395 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 229 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 366 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 375 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 74 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 562 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 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 618 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 620 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 208 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 488 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 242 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 353 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 208 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 393 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 247 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 579 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 917 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 570 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 372 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 710 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 542 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 277 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 906 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 712 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 399 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 993 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 546 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 386 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 789 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 971 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 669 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu 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_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 379 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_897781/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 @@ -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 = 448.345152 - 0: The maximum resident set size (KB) = 1894068 + 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_897781/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 @@ -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 = 801.183108 - 0: The maximum resident set size (KB) = 1760344 + 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_897781/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 @@ -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 = 844.999358 - 0: The maximum resident set size (KB) = 2174364 + 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_897781/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 @@ -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 = 386.411232 - 0: The maximum resident set size (KB) = 1178312 + 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_897781/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 @@ -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 = 912.424718 - 0: The maximum resident set size (KB) = 1697404 + 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_897781/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 @@ -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.858265 - 0: The maximum resident set size (KB) = 1727716 + 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_897781/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 @@ -520,15 +521,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 = 454.511520 - 0: The maximum resident set size (KB) = 2076564 + 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_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_897781/cpld_restart_p8_intel -Checking test 008 cpld_restart_p8_intel results .... +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 + 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 @@ -580,15 +593,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 = 242.826269 - 0: The maximum resident set size (KB) = 1955148 + 0: The total amount of wall time = 436.592919 + 0: The maximum resident set size (KB) = 2090316 -Test 008 cpld_restart_p8_intel PASS +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_897781/cpld_control_qr_p8_intel -Checking test 009 cpld_control_qr_p8_intel results .... +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 + 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 = 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-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 Comparing sfcf021.tile3.nc .........OK @@ -652,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 = 450.481910 - 0: The maximum resident set size (KB) = 1982660 + 0: The total amount of wall time = 445.978276 + 0: The maximum resident set size (KB) = 1998264 -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_897781/cpld_restart_qr_p8_intel -Checking test 010 cpld_restart_qr_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -712,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 = 250.731820 - 0: The maximum resident set size (KB) = 1734132 + 0: The total amount of wall time = 251.910684 + 0: The maximum resident set size (KB) = 1735320 -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_897781/cpld_2threads_p8_intel -Checking test 011 cpld_2threads_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -772,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 = 518.808191 - 0: The maximum resident set size (KB) = 2495224 + 0: The total amount of wall time = 524.472029 + 0: The maximum resident set size (KB) = 2488092 -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_897781/cpld_decomp_p8_intel -Checking test 012 cpld_decomp_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -832,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 = 446.209880 - 0: The maximum resident set size (KB) = 2082940 + 0: The total amount of wall time = 436.193413 + 0: The maximum resident set size (KB) = 2067780 -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_897781/cpld_mpi_p8_intel -Checking test 013 cpld_mpi_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -892,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 = 386.050688 - 0: The maximum resident set size (KB) = 1900264 + 0: The total amount of wall time = 373.842400 + 0: The maximum resident set size (KB) = 1902392 -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_897781/cpld_control_ciceC_p8_intel -Checking test 014 cpld_control_ciceC_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -964,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 = 441.019705 - 0: The maximum resident set size (KB) = 2084324 + 0: The total amount of wall time = 443.646170 + 0: The maximum resident set size (KB) = 2061136 -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_897781/cpld_control_c192_p8_intel -Checking test 015 cpld_control_c192_p8_intel results .... +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 Comparing sfcf030.tile3.nc .........OK @@ -1024,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 = 1234.238794 - 0: The maximum resident set size (KB) = 2816772 + 0: The total amount of wall time = 907.558398 + 0: The maximum resident set size (KB) = 2809588 -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_897781/cpld_restart_c192_p8_intel -Checking test 016 cpld_restart_c192_p8_intel results .... +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 Comparing sfcf030.tile3.nc .........OK @@ -1084,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 = 340.211027 - 0: The maximum resident set size (KB) = 2923876 + 0: The total amount of wall time = 335.772025 + 0: The maximum resident set size (KB) = 2911472 -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_897781/cpld_bmark_p8_intel -Checking test 017 cpld_bmark_p8_intel results .... +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 Comparing GFSFLX.GrbF06 .........OK @@ -1139,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 = 534.170576 - 0: The maximum resident set size (KB) = 3628324 + 0: The total amount of wall time = 486.923021 + 0: The maximum resident set size (KB) = 3621688 -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_897781/cpld_restart_bmark_p8_intel -Checking test 018 cpld_restart_bmark_p8_intel results .... +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 Comparing GFSFLX.GrbF06 .........OK @@ -1194,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 = 328.067471 - 0: The maximum resident set size (KB) = 3615960 + 0: The total amount of wall time = 285.300940 + 0: The maximum resident set size (KB) = 3612240 -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_897781/cpld_s2sa_p8_intel -Checking test 019 cpld_s2sa_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -1252,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.252488 - 0: The maximum resident set size (KB) = 2019400 + 0: The total amount of wall time = 282.556033 + 0: The maximum resident set size (KB) = 2032316 -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_897781/cpld_control_noaero_p8_intel -Checking test 020 cpld_control_noaero_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1323,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 = 417.184237 - 0: The maximum resident set size (KB) = 1769348 + 0: The total amount of wall time = 407.455823 + 0: The maximum resident set size (KB) = 1781028 -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_897781/cpld_control_nowave_noaero_p8_intel -Checking test 021 cpld_control_nowave_noaero_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1392,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 = 229.691830 - 0: The maximum resident set size (KB) = 1817252 + 0: The total amount of wall time = 223.734946 + 0: The maximum resident set size (KB) = 1821168 -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_897781/cpld_debug_p8_intel -Checking test 022 cpld_debug_p8_intel results .... +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 Comparing sfcf003.tile3.nc .........OK @@ -1452,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 = 402.631523 - 0: The maximum resident set size (KB) = 2048280 + 0: The total amount of wall time = 398.955192 + 0: The maximum resident set size (KB) = 2050072 -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_897781/cpld_debug_noaero_p8_intel -Checking test 023 cpld_debug_noaero_p8_intel results .... +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 Comparing sfcf003.tile3.nc .........OK @@ -1511,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 = 270.328137 - 0: The maximum resident set size (KB) = 1802128 + 0: The total amount of wall time = 270.380361 + 0: The maximum resident set size (KB) = 1798552 -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_897781/cpld_control_noaero_p8_agrid_intel -Checking test 024 cpld_control_noaero_p8_agrid_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1580,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 = 227.841170 - 0: The maximum resident set size (KB) = 1821152 + 0: The total amount of wall time = 227.647185 + 0: The maximum resident set size (KB) = 1828948 -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_897781/cpld_control_c48_intel -Checking test 025 cpld_control_c48_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -1637,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 = 430.194002 - 0: The maximum resident set size (KB) = 2837152 + 0: The total amount of wall time = 425.976897 + 0: The maximum resident set size (KB) = 2840244 -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_897781/cpld_control_p8_faster_intel -Checking test 026 cpld_control_p8_faster_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1709,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 = 468.441943 - 0: The maximum resident set size (KB) = 2087224 + 0: The total amount of wall time = 417.714944 + 0: The maximum resident set size (KB) = 2076248 -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_897781/cpld_control_pdlib_p8_intel -Checking test 027 cpld_control_pdlib_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1780,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 = 830.169184 - 0: The maximum resident set size (KB) = 1810288 + 0: The total amount of wall time = 811.144177 + 0: The maximum resident set size (KB) = 1812128 -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_897781/cpld_restart_pdlib_p8_intel -Checking test 028 cpld_restart_pdlib_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -1839,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 = 395.155344 - 0: The maximum resident set size (KB) = 1307868 + 0: The total amount of wall time = 399.291103 + 0: The maximum resident set size (KB) = 1284096 -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_897781/cpld_mpi_pdlib_p8_intel -Checking test 029 cpld_mpi_pdlib_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1910,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 = 918.639080 - 0: The maximum resident set size (KB) = 1735548 + 0: The total amount of wall time = 905.018806 + 0: The maximum resident set size (KB) = 1733472 -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_897781/cpld_debug_pdlib_p8_intel -Checking test 030 cpld_debug_pdlib_p8_intel results .... +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 Comparing sfcf003.tile3.nc .........OK @@ -1969,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 = 1283.850147 - 0: The maximum resident set size (KB) = 1764356 + 0: The total amount of wall time = 1282.544739 + 0: The maximum resident set size (KB) = 1773396 -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_897781/control_flake_intel -Checking test 031 control_flake_intel results .... +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 Comparing atmf000.nc .........OK @@ -1987,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 = 162.532091 - 0: The maximum resident set size (KB) = 723304 + 0: The total amount of wall time = 158.740006 + 0: The maximum resident set size (KB) = 714328 -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_897781/control_CubedSphereGrid_intel -Checking test 032 control_CubedSphereGrid_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -2021,15 +2094,15 @@ 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.719069 - 0: The maximum resident set size (KB) = 668528 + 0: The total amount of wall time = 112.663494 + 0: The maximum resident set size (KB) = 660636 -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_897781/control_CubedSphereGrid_parallel_intel -Checking test 033 control_CubedSphereGrid_parallel_intel results .... +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 Comparing atmf000.nc ............ALT CHECK......OK @@ -2043,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 = 124.004908 - 0: The maximum resident set size (KB) = 675816 + 0: The total amount of wall time = 118.253456 + 0: The maximum resident set size (KB) = 666840 -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_897781/control_latlon_intel -Checking test 034 control_latlon_intel results .... +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 Comparing atmf000.nc .........OK @@ -2061,16 +2134,16 @@ Checking test 034 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 116.828312 - 0: The maximum resident set size (KB) = 663760 + 0: The total amount of wall time = 113.971404 + 0: The maximum resident set size (KB) = 660876 -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_897781/control_wrtGauss_netcdf_parallel_intel -Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK +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 .........OK @@ -2079,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 = 122.046195 - 0: The maximum resident set size (KB) = 673224 + 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-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 + 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.226235 +0: The maximum resident set size (KB) = 865908 -Test 035 control_wrtGauss_netcdf_parallel_intel PASS +Test 037 control_c48_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_897781/control_c48_intel -Checking test 036 control_c48_intel results .... +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 Comparing atmf000.nc .........OK @@ -2125,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 = 339.167938 -0: The maximum resident set size (KB) = 868544 +0: The total amount of wall time = 338.300398 +0: The maximum resident set size (KB) = 857576 -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_897781/control_c192_intel -Checking test 037 control_c192_intel results .... +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 Comparing atmf000.nc .........OK @@ -2143,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 = 458.801727 - 0: The maximum resident set size (KB) = 994676 + 0: The total amount of wall time = 458.571667 + 0: The maximum resident set size (KB) = 963872 -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_897781/control_c384_intel -Checking test 038 control_c384_intel results .... +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 Comparing atmf000.nc .........OK @@ -2161,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 = 489.615792 - 0: The maximum resident set size (KB) = 1439772 + 0: The total amount of wall time = 468.156698 + 0: The maximum resident set size (KB) = 1448852 -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_897781/control_c384gdas_intel -Checking test 039 control_c384gdas_intel results .... +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 Comparing atmf000.nc .........OK @@ -2211,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 = 423.118358 - 0: The maximum resident set size (KB) = 1521012 + 0: The total amount of wall time = 411.882142 + 0: The maximum resident set size (KB) = 1513644 -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_897781/control_stochy_intel -Checking test 040 control_stochy_intel results .... +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 Comparing atmf000.nc .........OK @@ -2229,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 = 77.996141 - 0: The maximum resident set size (KB) = 665732 + 0: The total amount of wall time = 74.807848 + 0: The maximum resident set size (KB) = 670720 -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_897781/control_stochy_restart_intel -Checking test 041 control_stochy_restart_intel results .... +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 = 44.391264 - 0: The maximum resident set size (KB) = 536596 + 0: The total amount of wall time = 42.808856 + 0: The maximum resident set size (KB) = 554276 -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_897781/control_lndp_intel -Checking test 042 control_lndp_intel results .... +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 Comparing atmf000.nc .........OK @@ -2261,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 = 72.029711 - 0: The maximum resident set size (KB) = 669012 + 0: The total amount of wall time = 71.337975 + 0: The maximum resident set size (KB) = 665436 -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_897781/control_iovr4_intel -Checking test 043 control_iovr4_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2283,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.658600 - 0: The maximum resident set size (KB) = 666160 + 0: The total amount of wall time = 113.841812 + 0: The maximum resident set size (KB) = 677604 -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_897781/control_iovr5_intel -Checking test 044 control_iovr5_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2305,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.620399 - 0: The maximum resident set size (KB) = 669432 + 0: The total amount of wall time = 114.861092 + 0: The maximum resident set size (KB) = 664624 -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_897781/control_p8_intel -Checking test 045 control_p8_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2359,15 +2478,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 = 143.226022 - 0: The maximum resident set size (KB) = 1640928 + 0: The total amount of wall time = 143.626335 + 0: The maximum resident set size (KB) = 1635576 -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_ugwpv1_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_897781/control_p8_ugwpv1_intel -Checking test 046 control_p8_ugwpv1_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2413,15 +2532,69 @@ 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 = 138.479971 - 0: The maximum resident set size (KB) = 1654524 + 0: The total amount of wall time = 142.016756 + 0: The maximum resident set size (KB) = 1635284 -Test 046 control_p8_ugwpv1_intel PASS +Test 048 control_p8.v2.sfc_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_897781/control_restart_p8_intel -Checking test 047 control_restart_p8_intel results .... +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 + 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 = 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-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 Comparing GFSFLX.GrbF24 .........OK @@ -2459,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 = 75.788994 - 0: The maximum resident set size (KB) = 930352 + 0: The total amount of wall time = 77.982251 + 0: The maximum resident set size (KB) = 911376 -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_897781/control_noqr_p8_intel -Checking test 048 control_noqr_p8_intel results .... +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 Comparing sfcf024.nc ............ALT CHECK......OK @@ -2513,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.988474 - 0: The maximum resident set size (KB) = 1630976 + 0: The total amount of wall time = 140.976242 + 0: The maximum resident set size (KB) = 1628088 -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_897781/control_restart_noqr_p8_intel -Checking test 049 control_restart_noqr_p8_intel results .... +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 Comparing GFSFLX.GrbF24 .........OK @@ -2559,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.663169 - 0: The maximum resident set size (KB) = 986480 + 0: The total amount of wall time = 74.461731 + 0: The maximum resident set size (KB) = 986160 -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_897781/control_decomp_p8_intel -Checking test 050 control_decomp_p8_intel results .... +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 Comparing atmf000.nc ............ALT CHECK......OK @@ -2609,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.135876 - 0: The maximum resident set size (KB) = 1635552 + 0: The total amount of wall time = 147.431966 + 0: The maximum resident set size (KB) = 1632204 -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_897781/control_2threads_p8_intel -Checking test 051 control_2threads_p8_intel results .... +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 Comparing atmf000.nc ............ALT CHECK......OK @@ -2659,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 = 134.465932 - 0: The maximum resident set size (KB) = 1726524 + 0: The total amount of wall time = 129.752884 + 0: The maximum resident set size (KB) = 1725764 -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_897781/control_p8_lndp_intel -Checking test 052 control_p8_lndp_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2685,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 = 253.630136 - 0: The maximum resident set size (KB) = 1643972 + 0: The total amount of wall time = 251.738828 + 0: The maximum resident set size (KB) = 1638248 -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_897781/control_p8_rrtmgp_intel -Checking test 053 control_p8_rrtmgp_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2739,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 = 201.224803 - 0: The maximum resident set size (KB) = 1722220 + 0: The total amount of wall time = 196.126002 + 0: The maximum resident set size (KB) = 1716156 -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_897781/control_p8_mynn_intel -Checking test 054 control_p8_mynn_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2793,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 = 147.992565 - 0: The maximum resident set size (KB) = 1644900 + 0: The total amount of wall time = 142.269808 + 0: The maximum resident set size (KB) = 1648204 -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_897781/merra2_thompson_intel -Checking test 055 merra2_thompson_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2847,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 = 170.966568 - 0: The maximum resident set size (KB) = 1659156 + 0: The total amount of wall time = 166.189147 + 0: The maximum resident set size (KB) = 1661536 -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_897781/regional_control_intel -Checking test 056 regional_control_intel results .... +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 Comparing phyf000.nc .........OK @@ -2865,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 = 262.640747 - 0: The maximum resident set size (KB) = 960352 + 0: The total amount of wall time = 259.617884 + 0: The maximum resident set size (KB) = 960848 -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_897781/regional_restart_intel -Checking test 057 regional_restart_intel results .... +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 = 147.258856 - 0: The maximum resident set size (KB) = 1109292 + 0: The total amount of wall time = 138.262359 + 0: The maximum resident set size (KB) = 1102196 -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_897781/regional_decomp_intel -Checking test 058 regional_decomp_intel results .... +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 Comparing phyf000.nc .........OK @@ -2897,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 = 278.410051 - 0: The maximum resident set size (KB) = 948324 + 0: The total amount of wall time = 273.621278 + 0: The maximum resident set size (KB) = 948664 -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_897781/regional_2threads_intel -Checking test 059 regional_2threads_intel results .... +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 Comparing phyf000.nc .........OK @@ -2915,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 = 164.182700 - 0: The maximum resident set size (KB) = 914732 + 0: The total amount of wall time = 157.975186 + 0: The maximum resident set size (KB) = 922144 -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_897781/regional_noquilt_intel -Checking test 060 regional_noquilt_intel results .... +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 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.760542 - 0: The maximum resident set size (KB) = 1490804 + 0: The total amount of wall time = 249.880086 + 0: The maximum resident set size (KB) = 1493404 -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_897781/regional_netcdf_parallel_intel -Checking test 061 regional_netcdf_parallel_intel results .... +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 = 261.428469 - 0: The maximum resident set size (KB) = 960028 + 0: The total amount of wall time = 257.293060 + 0: The maximum resident set size (KB) = 962560 -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_897781/regional_2dwrtdecomp_intel -Checking test 062 regional_2dwrtdecomp_intel results .... +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 Comparing phyf000.nc .........OK @@ -2962,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 = 261.670565 - 0: The maximum resident set size (KB) = 959528 + 0: The total amount of wall time = 262.760438 + 0: The maximum resident set size (KB) = 958960 -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_897781/regional_wofs_intel -Checking test 063 regional_wofs_intel results .... +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 Comparing phyf000.nc .........OK @@ -2980,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 = 325.811545 - 0: The maximum resident set size (KB) = 2082600 + 0: The total amount of wall time = 320.776860 + 0: The maximum resident set size (KB) = 2083864 -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_897781/rap_control_intel -Checking test 064 rap_control_intel results .... +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 Comparing sfcf024.nc .........OK @@ -3034,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 = 386.840136 - 0: The maximum resident set size (KB) = 1204792 + 0: The total amount of wall time = 380.458360 + 0: The maximum resident set size (KB) = 1211820 -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_897781/regional_spp_sppt_shum_skeb_intel -Checking test 065 regional_spp_sppt_shum_skeb_intel results .... +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 Comparing phyf000.nc .........OK @@ -3052,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 = 201.253822 - 0: The maximum resident set size (KB) = 1410972 + 0: The total amount of wall time = 197.068588 + 0: The maximum resident set size (KB) = 1455196 -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_897781/rap_decomp_intel -Checking test 066 rap_decomp_intel results .... +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 Comparing sfcf024.nc .........OK @@ -3106,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 = 401.810706 - 0: The maximum resident set size (KB) = 1134388 + 0: The total amount of wall time = 394.696320 + 0: The maximum resident set size (KB) = 1139964 -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_897781/rap_2threads_intel -Checking test 067 rap_2threads_intel results .... +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 Comparing sfcf024.nc .........OK @@ -3160,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 = 363.845510 - 0: The maximum resident set size (KB) = 1357504 + 0: The total amount of wall time = 355.231732 + 0: The maximum resident set size (KB) = 1382700 -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_897781/rap_restart_intel -Checking test 068 rap_restart_intel results .... +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 Comparing GFSFLX.GrbF24 .........OK @@ -3206,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.743394 - 0: The maximum resident set size (KB) = 1145112 + 0: The total amount of wall time = 194.406129 + 0: The maximum resident set size (KB) = 1133396 -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_897781/rap_sfcdiff_intel -Checking test 069 rap_sfcdiff_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3260,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 = 386.146739 - 0: The maximum resident set size (KB) = 1196160 + 0: The total amount of wall time = 378.008082 + 0: The maximum resident set size (KB) = 1203108 -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_897781/rap_sfcdiff_decomp_intel -Checking test 070 rap_sfcdiff_decomp_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3314,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 = 402.699731 - 0: The maximum resident set size (KB) = 1139512 + 0: The total amount of wall time = 405.474771 + 0: The maximum resident set size (KB) = 1151496 -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_897781/rap_sfcdiff_restart_intel -Checking test 071 rap_sfcdiff_restart_intel results .... +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 Comparing GFSFLX.GrbF12 .........OK @@ -3360,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 = 284.589573 - 0: The maximum resident set size (KB) = 1201908 + 0: The total amount of wall time = 288.276229 + 0: The maximum resident set size (KB) = 1189612 -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_897781/hrrr_control_intel -Checking test 072 hrrr_control_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3414,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 = 210.494681 - 0: The maximum resident set size (KB) = 1085572 + 0: The total amount of wall time = 193.573133 + 0: The maximum resident set size (KB) = 1088884 -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_897781/hrrr_control_decomp_intel -Checking test 073 hrrr_control_decomp_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3468,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 = 198.085489 - 0: The maximum resident set size (KB) = 1064248 + 0: The total amount of wall time = 196.630749 + 0: The maximum resident set size (KB) = 1043232 -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_897781/hrrr_control_2threads_intel -Checking test 074 hrrr_control_2threads_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3522,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 = 186.011103 - 0: The maximum resident set size (KB) = 1120164 + 0: The total amount of wall time = 175.815686 + 0: The maximum resident set size (KB) = 1120352 -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_897781/hrrr_control_restart_intel -Checking test 075 hrrr_control_restart_intel results .... +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 = 102.005565 - 0: The maximum resident set size (KB) = 1036604 + 0: The total amount of wall time = 102.286500 + 0: The maximum resident set size (KB) = 1023844 -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_897781/rrfs_v1beta_intel -Checking test 076 rrfs_v1beta_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3590,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 = 370.385490 - 0: The maximum resident set size (KB) = 1188724 + 0: The total amount of wall time = 364.812079 + 0: The maximum resident set size (KB) = 1183964 -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_897781/rrfs_v1nssl_intel -Checking test 077 rrfs_v1nssl_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3612,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 = 451.142357 - 0: The maximum resident set size (KB) = 2006756 + 0: The total amount of wall time = 448.827158 + 0: The maximum resident set size (KB) = 2003984 -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_897781/rrfs_v1nssl_nohailnoccn_intel -Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3634,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 = 441.815628 - 0: The maximum resident set size (KB) = 2157648 + 0: The total amount of wall time = 435.136295 + 0: The maximum resident set size (KB) = 2176944 -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_897781/control_csawmg_intel -Checking test 079 control_csawmg_intel results .... +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 Comparing atmf000.nc .........OK @@ -3652,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 = 298.995526 - 0: The maximum resident set size (KB) = 823032 + 0: The total amount of wall time = 291.198798 + 0: The maximum resident set size (KB) = 826492 -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_897781/control_csawmgt_intel -Checking test 080 control_csawmgt_intel results .... +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 Comparing atmf000.nc .........OK @@ -3670,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 = 295.579049 - 0: The maximum resident set size (KB) = 820292 + 0: The total amount of wall time = 292.069197 + 0: The maximum resident set size (KB) = 825388 -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_897781/control_ras_intel -Checking test 081 control_ras_intel results .... +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 Comparing atmf000.nc .........OK @@ -3688,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 = 161.177804 - 0: The maximum resident set size (KB) = 808668 + 0: The total amount of wall time = 158.804701 + 0: The maximum resident set size (KB) = 808336 -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_897781/control_wam_intel -Checking test 082 control_wam_intel results .... +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 = 108.989428 - 0: The maximum resident set size (KB) = 771344 + 0: The total amount of wall time = 99.734054 + 0: The maximum resident set size (KB) = 783524 -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_897781/control_p8_faster_intel -Checking test 083 control_p8_faster_intel results .... +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 Comparing sfcf024.nc .........OK @@ -3754,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 = 128.882278 - 0: The maximum resident set size (KB) = 1621616 + 0: The total amount of wall time = 123.368677 + 0: The maximum resident set size (KB) = 1643036 -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_897781/regional_control_faster_intel -Checking test 084 regional_control_faster_intel results .... +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 Comparing phyf000.nc .........OK @@ -3772,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.856694 - 0: The maximum resident set size (KB) = 956560 + 0: The total amount of wall time = 233.059931 + 0: The maximum resident set size (KB) = 955896 -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_897781/control_CubedSphereGrid_debug_intel -Checking test 085 control_CubedSphereGrid_debug_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -3806,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 = 126.912370 - 0: The maximum resident set size (KB) = 820988 + 0: The total amount of wall time = 122.974509 + 0: The maximum resident set size (KB) = 826360 -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_897781/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... +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 ............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 = 125.815195 - 0: The maximum resident set size (KB) = 823500 + 0: The total amount of wall time = 122.227349 + 0: The maximum resident set size (KB) = 825152 -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_897781/control_stochy_debug_intel -Checking test 087 control_stochy_debug_intel results .... +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 = 143.034531 - 0: The maximum resident set size (KB) = 827320 + 0: The total amount of wall time = 140.494289 + 0: The maximum resident set size (KB) = 832672 -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_897781/control_lndp_debug_intel -Checking test 088 control_lndp_debug_intel results .... +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 = 129.352909 - 0: The maximum resident set size (KB) = 837044 + 0: The total amount of wall time = 124.904222 + 0: The maximum resident set size (KB) = 826896 -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_897781/control_csawmg_debug_intel -Checking test 089 control_csawmg_debug_intel results .... +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 = 200.747126 - 0: The maximum resident set size (KB) = 871964 + 0: The total amount of wall time = 191.372957 + 0: The maximum resident set size (KB) = 885660 -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_897781/control_csawmgt_debug_intel -Checking test 090 control_csawmgt_debug_intel results .... +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 = 196.765595 - 0: The maximum resident set size (KB) = 869156 + 0: The total amount of wall time = 188.703729 + 0: The maximum resident set size (KB) = 882988 -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_897781/control_ras_debug_intel -Checking test 091 control_ras_debug_intel results .... +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 = 131.157885 - 0: The maximum resident set size (KB) = 844744 + 0: The total amount of wall time = 126.645223 + 0: The maximum resident set size (KB) = 838264 -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_897781/control_diag_debug_intel -Checking test 092 control_diag_debug_intel results .... +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 = 130.052755 - 0: The maximum resident set size (KB) = 884628 + 0: The total amount of wall time = 126.389523 + 0: The maximum resident set size (KB) = 878748 -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_897781/control_debug_p8_intel -Checking test 093 control_debug_p8_intel results .... +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 = 137.001388 - 0: The maximum resident set size (KB) = 1659528 + 0: The total amount of wall time = 130.934503 + 0: The maximum resident set size (KB) = 1664372 -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_897781/regional_debug_intel -Checking test 094 regional_debug_intel results .... +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 = 853.166064 - 0: The maximum resident set size (KB) = 867776 + 0: The total amount of wall time = 835.216303 + 0: The maximum resident set size (KB) = 897244 -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_897781/rap_control_debug_intel -Checking test 095 rap_control_debug_intel results .... +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 = 235.092171 - 0: The maximum resident set size (KB) = 1219564 + 0: The total amount of wall time = 229.649865 + 0: The maximum resident set size (KB) = 1224212 -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_897781/hrrr_control_debug_intel -Checking test 096 hrrr_control_debug_intel results .... +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 = 228.207370 - 0: The maximum resident set size (KB) = 1216692 + 0: The total amount of wall time = 226.990785 + 0: The maximum resident set size (KB) = 1223328 -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_897781/hrrr_gf_debug_intel -Checking test 097 hrrr_gf_debug_intel results .... +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 = 234.097219 - 0: The maximum resident set size (KB) = 1225744 + 0: The total amount of wall time = 229.918677 + 0: The maximum resident set size (KB) = 1217928 -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_897781/hrrr_c3_debug_intel -Checking test 098 hrrr_c3_debug_intel results .... +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 = 233.299037 - 0: The maximum resident set size (KB) = 1214700 + 0: The total amount of wall time = 229.408920 + 0: The maximum resident set size (KB) = 1215212 -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_897781/rap_unified_drag_suite_debug_intel -Checking test 099 rap_unified_drag_suite_debug_intel results .... +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 = 235.938814 - 0: The maximum resident set size (KB) = 1217340 + 0: The total amount of wall time = 230.516705 + 0: The maximum resident set size (KB) = 1227900 -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_897781/rap_diag_debug_intel -Checking test 100 rap_diag_debug_intel results .... +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 = 239.427297 - 0: The maximum resident set size (KB) = 1295096 + 0: The total amount of wall time = 240.661738 + 0: The maximum resident set size (KB) = 1297872 -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_897781/rap_cires_ugwp_debug_intel -Checking test 101 rap_cires_ugwp_debug_intel results .... +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 = 236.744230 - 0: The maximum resident set size (KB) = 1220852 + 0: The total amount of wall time = 234.396613 + 0: The maximum resident set size (KB) = 1213032 -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_897781/rap_unified_ugwp_debug_intel -Checking test 102 rap_unified_ugwp_debug_intel results .... +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 = 234.693681 - 0: The maximum resident set size (KB) = 1221188 + 0: The total amount of wall time = 236.306475 + 0: The maximum resident set size (KB) = 1221512 -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_897781/rap_lndp_debug_intel -Checking test 103 rap_lndp_debug_intel results .... +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.271785 - 0: The maximum resident set size (KB) = 1214488 + 0: The total amount of wall time = 231.975775 + 0: The maximum resident set size (KB) = 1220888 -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_897781/rap_progcld_thompson_debug_intel -Checking test 104 rap_progcld_thompson_debug_intel results .... +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 = 231.793549 - 0: The maximum resident set size (KB) = 1213964 + 0: The total amount of wall time = 231.272994 + 0: The maximum resident set size (KB) = 1212348 -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_897781/rap_noah_debug_intel -Checking test 105 rap_noah_debug_intel results .... +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 = 227.524354 - 0: The maximum resident set size (KB) = 1211704 + 0: The total amount of wall time = 226.143189 + 0: The maximum resident set size (KB) = 1223736 -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_897781/rap_sfcdiff_debug_intel -Checking test 106 rap_sfcdiff_debug_intel results .... +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 = 231.793243 - 0: The maximum resident set size (KB) = 1214292 + 0: The total amount of wall time = 228.930416 + 0: The maximum resident set size (KB) = 1218484 -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_897781/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +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 = 374.857545 - 0: The maximum resident set size (KB) = 1222096 + 0: The total amount of wall time = 378.987128 + 0: The maximum resident set size (KB) = 1223688 -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_897781/rrfs_v1beta_debug_intel -Checking test 108 rrfs_v1beta_debug_intel results .... +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 = 223.784821 - 0: The maximum resident set size (KB) = 1212376 + 0: The total amount of wall time = 225.286377 + 0: The maximum resident set size (KB) = 1216848 -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_897781/rap_clm_lake_debug_intel -Checking test 109 rap_clm_lake_debug_intel results .... +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 = 282.387570 - 0: The maximum resident set size (KB) = 1214216 + 0: The total amount of wall time = 280.092482 + 0: The maximum resident set size (KB) = 1218444 -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_897781/rap_flake_debug_intel -Checking test 110 rap_flake_debug_intel results .... +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 = 230.264957 - 0: The maximum resident set size (KB) = 1232376 + 0: The total amount of wall time = 228.996325 + 0: The maximum resident set size (KB) = 1223256 -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_897781/gnv1_c96_no_nest_debug_intel -Checking test 111 gnv1_c96_no_nest_debug_intel results .... +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 Comparing sfcf002.nc .........OK @@ -4204,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.192029 - 0: The maximum resident set size (KB) = 1213156 + 0: The total amount of wall time = 398.257121 + 0: The maximum resident set size (KB) = 1221240 -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_897781/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +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 Comparing phyf000.nc .........OK @@ -4222,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 = 184.994276 - 0: The maximum resident set size (KB) = 1273820 + 0: The total amount of wall time = 185.481359 + 0: The maximum resident set size (KB) = 1317044 -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_897781/rap_control_dyn32_phy32_intel -Checking test 113 rap_control_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4276,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 = 314.107055 - 0: The maximum resident set size (KB) = 1154940 + 0: The total amount of wall time = 315.819038 + 0: The maximum resident set size (KB) = 1140000 -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_897781/hrrr_control_dyn32_phy32_intel -Checking test 114 hrrr_control_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4330,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 = 161.546851 - 0: The maximum resident set size (KB) = 1013348 + 0: The total amount of wall time = 165.097371 + 0: The maximum resident set size (KB) = 1031388 -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_897781/rap_2threads_dyn32_phy32_intel -Checking test 115 rap_2threads_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4384,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 = 299.817046 - 0: The maximum resident set size (KB) = 1256900 + 0: The total amount of wall time = 296.302765 + 0: The maximum resident set size (KB) = 1278988 -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_897781/hrrr_control_2threads_dyn32_phy32_intel -Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4438,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 = 153.757483 - 0: The maximum resident set size (KB) = 1044368 + 0: The total amount of wall time = 149.898641 + 0: The maximum resident set size (KB) = 1039424 -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_897781/hrrr_control_decomp_dyn32_phy32_intel -Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4492,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.213182 - 0: The maximum resident set size (KB) = 971816 + 0: The total amount of wall time = 171.855473 + 0: The maximum resident set size (KB) = 980400 -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_897781/rap_restart_dyn32_phy32_intel -Checking test 118 rap_restart_dyn32_phy32_intel results .... +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 Comparing GFSFLX.GrbF12 .........OK @@ -4538,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 = 239.720198 - 0: The maximum resident set size (KB) = 1091316 + 0: The total amount of wall time = 235.498563 + 0: The maximum resident set size (KB) = 1110704 -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_897781/hrrr_control_restart_dyn32_phy32_intel -Checking test 119 hrrr_control_restart_dyn32_phy32_intel results .... +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.833555 - 0: The maximum resident set size (KB) = 968312 + 0: The total amount of wall time = 86.072226 + 0: The maximum resident set size (KB) = 969836 -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_897781/conus13km_control_intel -Checking test 120 conus13km_control_intel results .... +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 Comparing sfcf002.nc .........OK @@ -4575,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 = 95.110637 - 0: The maximum resident set size (KB) = 1296892 + 0: The total amount of wall time = 93.580959 + 0: The maximum resident set size (KB) = 1292348 -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_897781/conus13km_2threads_intel -Checking test 121 conus13km_2threads_intel results .... +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 = 36.997348 - 0: The maximum resident set size (KB) = 1202936 + 0: The total amount of wall time = 36.775532 + 0: The maximum resident set size (KB) = 1203980 -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_897781/conus13km_restart_mismatch_intel -Checking test 122 conus13km_restart_mismatch_intel results .... +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.962508 - 0: The maximum resident set size (KB) = 1145860 + 0: The total amount of wall time = 53.846253 + 0: The maximum resident set size (KB) = 1163568 -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_897781/rap_control_dyn64_phy32_intel -Checking test 123 rap_control_dyn64_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4655,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.683656 - 0: The maximum resident set size (KB) = 1077188 + 0: The total amount of wall time = 213.253160 + 0: The maximum resident set size (KB) = 1094228 -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_897781/rap_control_debug_dyn32_phy32_intel -Checking test 124 rap_control_debug_dyn32_phy32_intel results .... +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 = 229.500007 - 0: The maximum resident set size (KB) = 1091776 + 0: The total amount of wall time = 223.235801 + 0: The maximum resident set size (KB) = 1091304 -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_897781/hrrr_control_debug_dyn32_phy32_intel -Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... +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.363666 - 0: The maximum resident set size (KB) = 1101164 + 0: The total amount of wall time = 218.720509 + 0: The maximum resident set size (KB) = 1095532 -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_897781/conus13km_debug_intel -Checking test 126 conus13km_debug_intel results .... +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 Comparing atmf000.nc .........OK @@ -4704,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 = 688.576544 - 0: The maximum resident set size (KB) = 1349404 + 0: The total amount of wall time = 693.215633 + 0: The maximum resident set size (KB) = 1327236 -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_897781/conus13km_debug_qr_intel -Checking test 127 conus13km_debug_qr_intel results .... +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 Comparing atmf000.nc .........OK @@ -4725,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 = 704.207782 - 0: The maximum resident set size (KB) = 988776 + 0: The total amount of wall time = 705.235205 + 0: The maximum resident set size (KB) = 980808 -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_897781/conus13km_debug_2threads_intel -Checking test 128 conus13km_debug_2threads_intel results .... +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 = 391.322766 - 0: The maximum resident set size (KB) = 1234252 + 0: The total amount of wall time = 394.387278 + 0: The maximum resident set size (KB) = 1245656 -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_897781/conus13km_radar_tten_debug_intel -Checking test 129 conus13km_radar_tten_debug_intel results .... +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 = 691.538258 - 0: The maximum resident set size (KB) = 1392572 + 0: The total amount of wall time = 694.468476 + 0: The maximum resident set size (KB) = 1402700 -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_897781/rap_control_dyn64_phy32_debug_intel -Checking test 130 rap_control_dyn64_phy32_debug_intel results .... +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.746622 - 0: The maximum resident set size (KB) = 1151000 + 0: The total amount of wall time = 228.896310 + 0: The maximum resident set size (KB) = 1147828 -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_897781/hafs_regional_atm_intel -Checking test 131 hafs_regional_atm_intel results .... +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 = 319.789563 - 0: The maximum resident set size (KB) = 879080 + 0: The total amount of wall time = 309.441222 + 0: The maximum resident set size (KB) = 873744 -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_897781/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 132 hafs_regional_atm_thompson_gfdlsf_intel results .... +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 = 302.620229 - 0: The maximum resident set size (KB) = 1271000 + 0: The total amount of wall time = 281.109796 + 0: The maximum resident set size (KB) = 1268792 -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_897781/hafs_regional_atm_ocn_intel -Checking test 133 hafs_regional_atm_ocn_intel results .... +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 Comparing archv.2019_241_06.a .........OK @@ -4808,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 = 371.161572 - 0: The maximum resident set size (KB) = 949020 + 0: The total amount of wall time = 367.738793 + 0: The maximum resident set size (KB) = 950108 -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_897781/hafs_regional_atm_wav_intel -Checking test 134 hafs_regional_atm_wav_intel results .... +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 Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4824,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 = 826.291798 - 0: The maximum resident set size (KB) = 1008032 + 0: The total amount of wall time = 809.843023 + 0: The maximum resident set size (KB) = 992116 -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_897781/hafs_regional_atm_ocn_wav_intel -Checking test 135 hafs_regional_atm_ocn_wav_intel results .... +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 Comparing archv.2019_241_06.a .........OK @@ -4842,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 = 879.500136 - 0: The maximum resident set size (KB) = 1007720 + 0: The total amount of wall time = 900.907650 + 0: The maximum resident set size (KB) = 988800 -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_897781/hafs_regional_1nest_atm_intel -Checking test 136 hafs_regional_1nest_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4862,24 +5035,24 @@ Checking test 136 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 .........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 ............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 = 310.602545 - 0: The maximum resident set size (KB) = 603832 + 0: The total amount of wall time = 307.866771 + 0: The maximum resident set size (KB) = 608284 -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_897781/hafs_regional_telescopic_2nests_atm_intel -Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4887,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 = 402.221834 - 0: The maximum resident set size (KB) = 615736 + 0: The total amount of wall time = 394.714449 + 0: The maximum resident set size (KB) = 614280 -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_897781/hafs_global_1nest_atm_intel -Checking test 138 hafs_global_1nest_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4928,28 +5101,28 @@ Checking test 138 hafs_global_1nest_atm_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 ............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 .........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 = 170.054126 - 0: The maximum resident set size (KB) = 432100 + 0: The total amount of wall time = 153.145842 + 0: The maximum resident set size (KB) = 433352 -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_897781/hafs_global_multiple_4nests_atm_intel -Checking test 139 hafs_global_multiple_4nests_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4994,7 +5167,7 @@ Checking test 139 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 .........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 @@ -5004,18 +5177,18 @@ Checking test 139 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 .........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 @@ -5030,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 = 453.559533 - 0: The maximum resident set size (KB) = 543132 + 0: The total amount of wall time = 438.036509 + 0: The maximum resident set size (KB) = 579408 -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_897781/hafs_regional_specified_moving_1nest_atm_intel -Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -5046,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.563280 - 0: The maximum resident set size (KB) = 615572 + 0: The total amount of wall time = 219.583928 + 0: The maximum resident set size (KB) = 620348 -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_897781/hafs_regional_storm_following_1nest_atm_intel -Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -5066,7 +5239,7 @@ Checking test 141 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 ............ALT CHECK......OK @@ -5075,15 +5248,15 @@ 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 - 0: The total amount of wall time = 211.173399 - 0: The maximum resident set size (KB) = 618176 + 0: The total amount of wall time = 207.701328 + 0: The maximum resident set size (KB) = 621436 -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_897781/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -5091,29 +5264,29 @@ 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 = 279.647437 - 0: The maximum resident set size (KB) = 674316 + 0: The total amount of wall time = 277.851381 + 0: The maximum resident set size (KB) = 683284 -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_897781/hafs_global_storm_following_1nest_atm_intel -Checking test 143 hafs_global_storm_following_1nest_atm_intel results .... +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 = 79.022796 - 0: The maximum resident set size (KB) = 447820 + 0: The total amount of wall time = 70.281756 + 0: The maximum resident set size (KB) = 446072 -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_897781/gnv1_nested_intel -Checking test 144 gnv1_nested_intel results .... +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 Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK @@ -5159,29 +5332,47 @@ Checking test 144 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 = 243.062779 - 0: The maximum resident set size (KB) = 899572 + 0: The total amount of wall time = 235.900667 + 0: The maximum resident set size (KB) = 903724 -Test 144 gnv1_nested_intel FAIL Tries: 2 +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_897781/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +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.238398 - 0: The maximum resident set size (KB) = 631072 + 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 -Test 145 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 +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 + 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 = 978.630017 + 0: The maximum resident set size (KB) = 746756 -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_897781/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +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 +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 @@ -5191,162 +5382,179 @@ 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 = 968.931440 - 0: The maximum resident set size (KB) = 745116 + 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 -Test 146 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_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 + 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 -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_897781/hafs_regional_docn_intel -Checking test 147 hafs_regional_docn_intel results .... + 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-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 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 = 314.435452 - 0: The maximum resident set size (KB) = 961364 + 0: The total amount of wall time = 310.548147 + 0: The maximum resident set size (KB) = 961196 -Test 147 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_897781/hafs_regional_docn_oisst_intel -Checking test 148 hafs_regional_docn_oisst_intel results .... +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 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 = 316.374896 - 0: The maximum resident set size (KB) = 924200 + 0: The total amount of wall time = 318.413827 + 0: The maximum resident set size (KB) = 913476 -Test 148 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_897781/hafs_regional_datm_cdeps_intel -Checking test 149 hafs_regional_datm_cdeps_intel results .... +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 = 972.760157 - 0: The maximum resident set size (KB) = 1341528 + 0: The total amount of wall time = 974.211426 + 0: The maximum resident set size (KB) = 1341756 -Test 149 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_897781/datm_cdeps_control_cfsr_intel -Checking test 150 datm_cdeps_control_cfsr_intel results .... +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 = 122.889907 - 0: The maximum resident set size (KB) = 1149688 + 0: The total amount of wall time = 122.645409 + 0: The maximum resident set size (KB) = 1129924 -Test 150 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_897781/datm_cdeps_restart_cfsr_intel -Checking test 151 datm_cdeps_restart_cfsr_intel results .... +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.800254 - 0: The maximum resident set size (KB) = 1092576 + 0: The total amount of wall time = 72.928629 + 0: The maximum resident set size (KB) = 1107928 -Test 151 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_897781/datm_cdeps_control_gefs_intel -Checking test 152 datm_cdeps_control_gefs_intel results .... +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.381640 - 0: The maximum resident set size (KB) = 1007004 + 0: The total amount of wall time = 118.111161 + 0: The maximum resident set size (KB) = 1006048 -Test 152 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_897781/datm_cdeps_iau_gefs_intel -Checking test 153 datm_cdeps_iau_gefs_intel results .... +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 = 117.395763 - 0: The maximum resident set size (KB) = 1016340 + 0: The total amount of wall time = 120.528837 + 0: The maximum resident set size (KB) = 1010776 -Test 153 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_897781/datm_cdeps_stochy_gefs_intel -Checking test 154 datm_cdeps_stochy_gefs_intel results .... +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.022054 - 0: The maximum resident set size (KB) = 1007444 + 0: The total amount of wall time = 117.851743 + 0: The maximum resident set size (KB) = 1002364 -Test 154 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_897781/datm_cdeps_ciceC_cfsr_intel -Checking test 155 datm_cdeps_ciceC_cfsr_intel results .... +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 = 122.778373 - 0: The maximum resident set size (KB) = 1110956 + 0: The total amount of wall time = 122.479421 + 0: The maximum resident set size (KB) = 1155304 -Test 155 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_897781/datm_cdeps_bulk_cfsr_intel -Checking test 156 datm_cdeps_bulk_cfsr_intel results .... +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.114886 - 0: The maximum resident set size (KB) = 1139392 + 0: The total amount of wall time = 121.906181 + 0: The maximum resident set size (KB) = 1127584 -Test 156 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_897781/datm_cdeps_bulk_gefs_intel -Checking test 157 datm_cdeps_bulk_gefs_intel results .... +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 = 117.646064 - 0: The maximum resident set size (KB) = 1012816 + 0: The total amount of wall time = 117.270880 + 0: The maximum resident set size (KB) = 1007748 -Test 157 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_897781/datm_cdeps_mx025_cfsr_intel -Checking test 158 datm_cdeps_mx025_cfsr_intel results .... +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 Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5354,15 +5562,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 = 292.919151 - 0: The maximum resident set size (KB) = 1154808 + 0: The total amount of wall time = 281.366470 + 0: The maximum resident set size (KB) = 1150460 -Test 158 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_897781/datm_cdeps_mx025_gefs_intel -Checking test 159 datm_cdeps_mx025_gefs_intel results .... +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 Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5370,78 +5578,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 = 283.744386 - 0: The maximum resident set size (KB) = 1145388 + 0: The total amount of wall time = 277.845044 + 0: The maximum resident set size (KB) = 1153004 -Test 159 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_897781/datm_cdeps_multiple_files_cfsr_intel -Checking test 160 datm_cdeps_multiple_files_cfsr_intel results .... +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 = 120.924279 - 0: The maximum resident set size (KB) = 1141940 + 0: The total amount of wall time = 122.036429 + 0: The maximum resident set size (KB) = 1126076 -Test 160 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_897781/datm_cdeps_3072x1536_cfsr_intel -Checking test 161 datm_cdeps_3072x1536_cfsr_intel results .... +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.714529 - 0: The maximum resident set size (KB) = 2417780 + 0: The total amount of wall time = 174.113271 + 0: The maximum resident set size (KB) = 2439256 -Test 161 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_897781/datm_cdeps_gfs_intel -Checking test 162 datm_cdeps_gfs_intel results .... +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 = 178.369673 - 0: The maximum resident set size (KB) = 2365880 + 0: The total amount of wall time = 180.610353 + 0: The maximum resident set size (KB) = 2435908 -Test 162 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_897781/datm_cdeps_debug_cfsr_intel -Checking test 163 datm_cdeps_debug_cfsr_intel results .... +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 = 295.801730 - 0: The maximum resident set size (KB) = 1070036 + 0: The total amount of wall time = 302.213548 + 0: The maximum resident set size (KB) = 1063692 -Test 163 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_897781/datm_cdeps_control_cfsr_faster_intel -Checking test 164 datm_cdeps_control_cfsr_faster_intel results .... +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 = 122.237568 - 0: The maximum resident set size (KB) = 1133328 + 0: The total amount of wall time = 119.546041 + 0: The maximum resident set size (KB) = 1142964 -Test 164 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_897781/datm_cdeps_lnd_gswp3_intel -Checking test 165 datm_cdeps_lnd_gswp3_intel results .... +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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5449,15 +5657,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 = 44.143000 - 0: The maximum resident set size (KB) = 335192 + 0: The total amount of wall time = 43.916551 + 0: The maximum resident set size (KB) = 340636 -Test 165 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_897781/datm_cdeps_lnd_era5_intel -Checking test 166 datm_cdeps_lnd_era5_intel results .... +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 Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5465,15 +5673,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 = 48.752509 - 0: The maximum resident set size (KB) = 561636 + 0: The total amount of wall time = 40.266470 + 0: The maximum resident set size (KB) = 558872 -Test 166 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_897781/datm_cdeps_lnd_era5_rst_intel -Checking test 167 datm_cdeps_lnd_era5_rst_intel results .... +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 Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5481,15 +5689,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 = 35.025430 - 0: The maximum resident set size (KB) = 556280 + 0: The total amount of wall time = 24.844785 + 0: The maximum resident set size (KB) = 556428 -Test 167 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_897781/control_p8_atmlnd_sbs_intel -Checking test 168 control_p8_atmlnd_sbs_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -5577,15 +5785,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 = 347.985017 - 0: The maximum resident set size (KB) = 1638696 + 0: The total amount of wall time = 327.955030 + 0: The maximum resident set size (KB) = 1637420 -Test 168 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_897781/control_p8_atmlnd_intel -Checking test 169 control_p8_atmlnd_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -5673,15 +5881,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 = 353.845582 - 0: The maximum resident set size (KB) = 1636012 + 0: The total amount of wall time = 327.361237 + 0: The maximum resident set size (KB) = 1639172 -Test 169 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_897781/control_restart_p8_atmlnd_intel -Checking test 170 control_restart_p8_atmlnd_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -5701,15 +5909,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 = 164.212686 - 0: The maximum resident set size (KB) = 954808 + 0: The total amount of wall time = 170.542369 + 0: The maximum resident set size (KB) = 942284 -Test 170 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_897781/atmwav_control_noaero_p8_intel -Checking test 171 atmwav_control_noaero_p8_intel results .... +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 Comparing atmf000.nc .........OK @@ -5751,15 +5959,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 = 80.241007 - 0: The maximum resident set size (KB) = 1694368 + 0: The total amount of wall time = 79.992699 + 0: The maximum resident set size (KB) = 1707356 -Test 171 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_897781/control_atmwav_intel -Checking test 172 control_atmwav_intel results .... +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 Comparing atmf000.nc .........OK @@ -5802,15 +6010,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.388464 - 0: The maximum resident set size (KB) = 702756 + 0: The total amount of wall time = 76.189888 + 0: The maximum resident set size (KB) = 696156 -Test 172 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_897781/atmaero_control_p8_intel -Checking test 173 atmaero_control_p8_intel results .... +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 Comparing atmf000.nc .........OK @@ -5853,15 +6061,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 = 206.620136 - 0: The maximum resident set size (KB) = 1795520 + 0: The total amount of wall time = 200.564861 + 0: The maximum resident set size (KB) = 1797340 -Test 173 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_897781/atmaero_control_p8_rad_intel -Checking test 174 atmaero_control_p8_rad_intel results .... +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 Comparing atmf000.nc .........OK @@ -5904,15 +6112,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 = 247.184091 - 0: The maximum resident set size (KB) = 1803192 + 0: The total amount of wall time = 243.134373 + 0: The maximum resident set size (KB) = 1815144 -Test 174 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_897781/atmaero_control_p8_rad_micro_intel -Checking test 175 atmaero_control_p8_rad_micro_intel results .... +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 Comparing atmf000.nc .........OK @@ -5955,15 +6163,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 = 261.537141 - 0: The maximum resident set size (KB) = 1828068 + 0: The total amount of wall time = 257.570882 + 0: The maximum resident set size (KB) = 1831132 -Test 175 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_897781/regional_atmaq_debug_intel -Checking test 176 regional_atmaq_debug_intel results .... +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 Comparing atmf000.nc .........OK @@ -5976,15 +6184,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 = 983.701287 - 0: The maximum resident set size (KB) = 4586824 + 0: The total amount of wall time = 971.352709 + 0: The maximum resident set size (KB) = 4566624 -Test 176 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_897781/control_c48_gnu -Checking test 177 control_c48_gnu results .... +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 Comparing atmf000.nc .........OK @@ -6022,15 +6230,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 = 562.326654 -0: The maximum resident set size (KB) = 875796 +0: The total amount of wall time = 561.801781 +0: The maximum resident set size (KB) = 860308 -Test 177 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_897781/control_stochy_gnu -Checking test 178 control_stochy_gnu results .... +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 Comparing atmf000.nc .........OK @@ -6040,15 +6248,15 @@ Checking test 178 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 127.783452 - 0: The maximum resident set size (KB) = 727156 + 0: The total amount of wall time = 123.888527 + 0: The maximum resident set size (KB) = 728132 -Test 178 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_897781/control_ras_gnu -Checking test 179 control_ras_gnu results .... +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 Comparing atmf000.nc .........OK @@ -6058,15 +6266,15 @@ Checking test 179 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 214.118457 - 0: The maximum resident set size (KB) = 732380 + 0: The total amount of wall time = 212.158787 + 0: The maximum resident set size (KB) = 730800 -Test 179 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_897781/control_p8_gnu -Checking test 180 control_p8_gnu results .... +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 Comparing sfcf024.nc .........OK @@ -6112,15 +6320,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 = 208.608207 - 0: The maximum resident set size (KB) = 1507960 + 0: The total amount of wall time = 206.447966 + 0: The maximum resident set size (KB) = 1508876 -Test 180 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_897781/control_p8_ugwpv1_gnu -Checking test 181 control_p8_ugwpv1_gnu results .... +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 Comparing sfcf024.nc .........OK @@ -6166,15 +6374,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.387051 - 0: The maximum resident set size (KB) = 1511132 + 0: The total amount of wall time = 201.997164 + 0: The maximum resident set size (KB) = 1511924 -Test 181 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_897781/control_flake_gnu -Checking test 182 control_flake_gnu results .... +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 Comparing atmf000.nc .........OK @@ -6184,15 +6392,15 @@ Checking test 182 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 251.521508 - 0: The maximum resident set size (KB) = 806620 + 0: The total amount of wall time = 252.499609 + 0: The maximum resident set size (KB) = 808196 -Test 182 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_897781/rap_control_gnu -Checking test 183 rap_control_gnu results .... +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 Comparing sfcf024.nc .........OK @@ -6238,15 +6446,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 = 450.764616 - 0: The maximum resident set size (KB) = 1086656 + 0: The total amount of wall time = 446.564193 + 0: The maximum resident set size (KB) = 1086128 -Test 183 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_897781/rap_decomp_gnu -Checking test 184 rap_decomp_gnu results .... +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 Comparing sfcf024.nc .........OK @@ -6292,15 +6500,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 = 454.222976 - 0: The maximum resident set size (KB) = 1087216 + 0: The total amount of wall time = 454.081210 + 0: The maximum resident set size (KB) = 1084532 -Test 184 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_897781/rap_2threads_gnu -Checking test 185 rap_2threads_gnu results .... +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 Comparing sfcf024.nc .........OK @@ -6346,15 +6554,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 = 414.065041 - 0: The maximum resident set size (KB) = 1128108 + 0: The total amount of wall time = 417.730501 + 0: The maximum resident set size (KB) = 1148104 -Test 185 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_897781/rap_restart_gnu -Checking test 186 rap_restart_gnu results .... +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 Comparing GFSFLX.GrbF24 .........OK @@ -6392,15 +6600,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 = 235.254710 - 0: The maximum resident set size (KB) = 884720 + 0: The total amount of wall time = 230.112825 + 0: The maximum resident set size (KB) = 884008 -Test 186 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_897781/rap_sfcdiff_gnu -Checking test 187 rap_sfcdiff_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -6446,15 +6654,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 = 447.802421 - 0: The maximum resident set size (KB) = 1086012 + 0: The total amount of wall time = 452.021282 + 0: The maximum resident set size (KB) = 1084124 -Test 187 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_897781/rap_sfcdiff_decomp_gnu -Checking test 188 rap_sfcdiff_decomp_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -6500,15 +6708,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 = 453.551051 - 0: The maximum resident set size (KB) = 1085244 + 0: The total amount of wall time = 456.568989 + 0: The maximum resident set size (KB) = 1083960 -Test 188 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_897781/rap_sfcdiff_restart_gnu -Checking test 189 rap_sfcdiff_restart_gnu results .... +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 Comparing GFSFLX.GrbF12 .........OK @@ -6546,15 +6754,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 = 333.199151 - 0: The maximum resident set size (KB) = 883364 + 0: The total amount of wall time = 332.922244 + 0: The maximum resident set size (KB) = 883532 -Test 189 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_897781/hrrr_control_gnu -Checking test 190 hrrr_control_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -6600,15 +6808,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 = 227.298842 - 0: The maximum resident set size (KB) = 1070748 + 0: The total amount of wall time = 228.219739 + 0: The maximum resident set size (KB) = 1072036 -Test 190 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_897781/hrrr_control_noqr_gnu -Checking test 191 hrrr_control_noqr_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -6654,15 +6862,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 = 229.160690 - 0: The maximum resident set size (KB) = 1135760 + 0: The total amount of wall time = 230.316069 + 0: The maximum resident set size (KB) = 1135288 -Test 191 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_897781/hrrr_control_2threads_gnu -Checking test 192 hrrr_control_2threads_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -6708,15 +6916,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 = 206.357471 - 0: The maximum resident set size (KB) = 1045716 + 0: The total amount of wall time = 207.651400 + 0: The maximum resident set size (KB) = 1025636 -Test 192 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_897781/hrrr_control_decomp_gnu -Checking test 193 hrrr_control_decomp_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -6762,43 +6970,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 = 229.886852 - 0: The maximum resident set size (KB) = 1070540 + 0: The total amount of wall time = 230.261012 + 0: The maximum resident set size (KB) = 1071120 -Test 193 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_897781/hrrr_control_restart_gnu -Checking test 194 hrrr_control_restart_gnu results .... +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 = 114.155229 - 0: The maximum resident set size (KB) = 881264 + 0: The total amount of wall time = 115.472680 + 0: The maximum resident set size (KB) = 881908 -Test 194 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_897781/hrrr_control_restart_noqr_gnu -Checking test 195 hrrr_control_restart_noqr_gnu results .... +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 = 114.831872 - 0: The maximum resident set size (KB) = 933116 + 0: The total amount of wall time = 114.710069 + 0: The maximum resident set size (KB) = 931908 -Test 195 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_897781/rrfs_v1beta_gnu -Checking test 196 rrfs_v1beta_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -6844,225 +7052,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 = 442.249582 - 0: The maximum resident set size (KB) = 1081696 + 0: The total amount of wall time = 437.525741 + 0: The maximum resident set size (KB) = 1081304 -Test 196 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_897781/control_diag_debug_gnu -Checking test 197 control_diag_debug_gnu results .... +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 = 66.371598 - 0: The maximum resident set size (KB) = 773472 + 0: The total amount of wall time = 65.754808 + 0: The maximum resident set size (KB) = 771752 -Test 197 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_897781/regional_debug_gnu -Checking test 198 regional_debug_gnu results .... +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 = 374.684125 - 0: The maximum resident set size (KB) = 928532 + 0: The total amount of wall time = 368.099541 + 0: The maximum resident set size (KB) = 921468 -Test 198 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_897781/rap_control_debug_gnu -Checking test 199 rap_control_debug_gnu results .... +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.614086 - 0: The maximum resident set size (KB) = 1102212 + 0: The total amount of wall time = 110.197920 + 0: The maximum resident set size (KB) = 1096476 -Test 199 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_897781/hrrr_control_debug_gnu -Checking test 200 hrrr_control_debug_gnu results .... +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 = 108.063611 - 0: The maximum resident set size (KB) = 1092944 + 0: The total amount of wall time = 106.118091 + 0: The maximum resident set size (KB) = 1089344 -Test 200 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_897781/hrrr_gf_debug_gnu -Checking test 201 hrrr_gf_debug_gnu results .... +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 = 108.269690 - 0: The maximum resident set size (KB) = 1095720 + 0: The total amount of wall time = 109.382121 + 0: The maximum resident set size (KB) = 1094152 -Test 201 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_897781/hrrr_c3_debug_gnu -Checking test 202 hrrr_c3_debug_gnu results .... +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 = 115.039512 - 0: The maximum resident set size (KB) = 1094796 + 0: The total amount of wall time = 111.047710 + 0: The maximum resident set size (KB) = 1093744 -Test 202 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_897781/rap_diag_debug_gnu -Checking test 203 rap_diag_debug_gnu results .... +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 = 114.841016 - 0: The maximum resident set size (KB) = 1268596 + 0: The total amount of wall time = 115.968799 + 0: The maximum resident set size (KB) = 1269748 -Test 203 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_897781/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 204 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +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 = 174.019530 - 0: The maximum resident set size (KB) = 1095864 + 0: The total amount of wall time = 177.016118 + 0: The maximum resident set size (KB) = 1097820 -Test 204 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_897781/rap_progcld_thompson_debug_gnu -Checking test 205 rap_progcld_thompson_debug_gnu results .... +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 = 109.318477 - 0: The maximum resident set size (KB) = 1099688 + 0: The total amount of wall time = 110.333784 + 0: The maximum resident set size (KB) = 1098696 -Test 205 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_897781/rrfs_v1beta_debug_gnu -Checking test 206 rrfs_v1beta_debug_gnu results .... +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 = 112.206637 - 0: The maximum resident set size (KB) = 1102756 + 0: The total amount of wall time = 109.219334 + 0: The maximum resident set size (KB) = 1094716 -Test 206 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_897781/control_ras_debug_gnu -Checking test 207 control_ras_debug_gnu results .... +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 = 64.271290 - 0: The maximum resident set size (KB) = 722512 + 0: The total amount of wall time = 63.126530 + 0: The maximum resident set size (KB) = 728648 -Test 207 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_897781/control_stochy_debug_gnu -Checking test 208 control_stochy_debug_gnu results .... +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 = 70.256941 - 0: The maximum resident set size (KB) = 720276 + 0: The total amount of wall time = 68.329098 + 0: The maximum resident set size (KB) = 719036 -Test 208 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_897781/control_debug_p8_gnu -Checking test 209 control_debug_p8_gnu results .... +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 = 66.232807 - 0: The maximum resident set size (KB) = 1509164 + 0: The total amount of wall time = 68.649005 + 0: The maximum resident set size (KB) = 1505620 -Test 209 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_897781/rap_flake_debug_gnu -Checking test 210 rap_flake_debug_gnu results .... +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 = 109.455648 - 0: The maximum resident set size (KB) = 1098384 + 0: The total amount of wall time = 109.703333 + 0: The maximum resident set size (KB) = 1101072 -Test 210 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_897781/rap_clm_lake_debug_gnu -Checking test 211 rap_clm_lake_debug_gnu results .... +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 = 121.021661 - 0: The maximum resident set size (KB) = 1099848 + 0: The total amount of wall time = 122.842551 + 0: The maximum resident set size (KB) = 1100304 -Test 211 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_897781/gnv1_c96_no_nest_debug_gnu -Checking test 212 gnv1_c96_no_nest_debug_gnu results .... +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 Comparing sfcf002.nc .........OK @@ -7102,15 +7310,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 = 189.013777 - 0: The maximum resident set size (KB) = 1100196 + 0: The total amount of wall time = 187.259952 + 0: The maximum resident set size (KB) = 1102064 -Test 212 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_897781/rap_control_dyn32_phy32_gnu -Checking test 213 rap_control_dyn32_phy32_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -7156,15 +7364,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 = 428.501721 - 0: The maximum resident set size (KB) = 968632 + 0: The total amount of wall time = 424.563139 + 0: The maximum resident set size (KB) = 963456 -Test 213 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_897781/hrrr_control_dyn32_phy32_gnu -Checking test 214 hrrr_control_dyn32_phy32_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -7210,15 +7418,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.554902 - 0: The maximum resident set size (KB) = 951020 + 0: The total amount of wall time = 216.844494 + 0: The maximum resident set size (KB) = 953124 -Test 214 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_897781/rap_2threads_dyn32_phy32_gnu -Checking test 215 rap_2threads_dyn32_phy32_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -7264,15 +7472,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.654309 - 0: The maximum resident set size (KB) = 997712 + 0: The total amount of wall time = 392.056259 + 0: The maximum resident set size (KB) = 968936 -Test 215 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_897781/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -7318,15 +7526,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.853728 - 0: The maximum resident set size (KB) = 877736 + 0: The total amount of wall time = 198.976765 + 0: The maximum resident set size (KB) = 876092 -Test 216 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_897781/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -7372,15 +7580,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 = 224.731435 - 0: The maximum resident set size (KB) = 953164 + 0: The total amount of wall time = 220.161498 + 0: The maximum resident set size (KB) = 953140 -Test 217 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_897781/rap_restart_dyn32_phy32_gnu -Checking test 218 rap_restart_dyn32_phy32_gnu results .... +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 Comparing GFSFLX.GrbF12 .........OK @@ -7418,29 +7626,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 = 317.442408 - 0: The maximum resident set size (KB) = 870068 + 0: The total amount of wall time = 319.206471 + 0: The maximum resident set size (KB) = 858236 -Test 218 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_897781/hrrr_control_restart_dyn32_phy32_gnu -Checking test 219 hrrr_control_restart_dyn32_phy32_gnu results .... +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 = 112.570712 - 0: The maximum resident set size (KB) = 856000 + 0: The total amount of wall time = 111.690552 + 0: The maximum resident set size (KB) = 862644 -Test 219 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_897781/conus13km_control_gnu -Checking test 220 conus13km_control_gnu results .... +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 Comparing sfcf002.nc .........OK @@ -7455,41 +7663,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 = 143.590128 - 0: The maximum resident set size (KB) = 1268396 + 0: The total amount of wall time = 142.009333 + 0: The maximum resident set size (KB) = 1267916 -Test 220 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_897781/conus13km_2threads_gnu -Checking test 221 conus13km_2threads_gnu results .... +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 = 73.939040 - 0: The maximum resident set size (KB) = 1175064 + 0: The total amount of wall time = 56.926568 + 0: The maximum resident set size (KB) = 1172676 -Test 221 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_897781/conus13km_restart_mismatch_gnu -Checking test 222 conus13km_restart_mismatch_gnu results .... +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.556988 - 0: The maximum resident set size (KB) = 928464 + 0: The total amount of wall time = 79.546495 + 0: The maximum resident set size (KB) = 943172 -Test 222 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_897781/rap_control_dyn64_phy32_gnu -Checking test 223 rap_control_dyn64_phy32_gnu results .... +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 Comparing sfcf012.nc .........OK @@ -7535,43 +7743,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 = 250.594402 - 0: The maximum resident set size (KB) = 988860 + 0: The total amount of wall time = 257.156347 + 0: The maximum resident set size (KB) = 988684 -Test 223 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_897781/rap_control_debug_dyn32_phy32_gnu -Checking test 224 rap_control_debug_dyn32_phy32_gnu results .... +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 = 108.431345 - 0: The maximum resident set size (KB) = 974344 + 0: The total amount of wall time = 109.230408 + 0: The maximum resident set size (KB) = 973256 -Test 224 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_897781/hrrr_control_debug_dyn32_phy32_gnu -Checking test 225 hrrr_control_debug_dyn32_phy32_gnu results .... +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 = 105.957764 - 0: The maximum resident set size (KB) = 965368 + 0: The total amount of wall time = 106.034854 + 0: The maximum resident set size (KB) = 965252 -Test 225 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_897781/conus13km_debug_gnu -Checking test 226 conus13km_debug_gnu results .... +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 Comparing atmf000.nc .........OK @@ -7584,15 +7792,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 = 318.212713 - 0: The maximum resident set size (KB) = 1282400 + 0: The total amount of wall time = 312.554810 + 0: The maximum resident set size (KB) = 1280524 -Test 226 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_897781/conus13km_debug_qr_gnu -Checking test 227 conus13km_debug_qr_gnu results .... +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 Comparing atmf000.nc .........OK @@ -7605,81 +7813,81 @@ 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 = 323.220266 - 0: The maximum resident set size (KB) = 967476 + 0: The total amount of wall time = 326.493219 + 0: The maximum resident set size (KB) = 954536 -Test 227 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_897781/conus13km_debug_2threads_gnu -Checking test 228 conus13km_debug_2threads_gnu results .... +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 = 187.259807 - 0: The maximum resident set size (KB) = 1188880 + 0: The total amount of wall time = 187.583794 + 0: The maximum resident set size (KB) = 1188608 -Test 228 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_897781/conus13km_radar_tten_debug_gnu -Checking test 229 conus13km_radar_tten_debug_gnu results .... +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 = 316.900933 - 0: The maximum resident set size (KB) = 1349500 + 0: The total amount of wall time = 320.089852 + 0: The maximum resident set size (KB) = 1349640 -Test 229 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_897781/rap_control_dyn64_phy32_debug_gnu -Checking test 230 rap_control_dyn64_phy32_debug_gnu results .... +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 = 113.708917 - 0: The maximum resident set size (KB) = 1000600 + 0: The total amount of wall time = 110.143505 + 0: The maximum resident set size (KB) = 1001260 -Test 230 rap_control_dyn64_phy32_debug_gnu PASS +Test 235 rap_control_dyn64_phy32_debug_gnu PASS FAILED TESTS: -144 gnv1_nested_intel failed in check_result -gnv1_nested_intel 144 failed in run_test +147 gnv1_nested_intel failed in check_result +gnv1_nested_intel 147 failed in run_test REGRESSION TEST FAILED -Tue Jan 30 11:23:05 CST 2024 -Elapsed time: 02h:58m:15s. Have a nice day! -Tue Jan 30 14:07:34 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: ec848db8c3a6942ff39becb62b9742902b80ade3 +Testing UFSWM Hash: aff1f15a908e7012f85a13fc101150df644731a6 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 13ed05982efc95c077efc3b9609688554e3a854c CMEPS-interface/CMEPS (cmeps_v0.4.1-2302-g13ed059) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 400e2129e147212ae2820368a8e0de6fd2492b36 FV3 (remotes/origin/nssl_mp_init) + 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 613 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_2602116/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 @@ -7695,10 +7903,10 @@ 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 .........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 @@ -7709,7 +7917,7 @@ Checking test 001 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 ............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 @@ -7726,12 +7934,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 = 255.272899 - 0: The maximum resident set size (KB) = 902644 + 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 Jan 30 16:23:02 CST 2024 -Elapsed time: 02h:15m:29s. 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 7ecec1b18e..a676f307e6 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,57 +1,57 @@ -Tue Jan 30 14:25:08 UTC 2024 +Thu Feb 8 15:46:23 UTC 2024 Start Regression test -Testing UFSWM Hash: ec848db8c3a6942ff39becb62b9742902b80ade3 +Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 13ed05982efc95c077efc3b9609688554e3a854c CMEPS-interface/CMEPS (cmeps_v0.4.1-1409-g13ed059) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 400e2129e147212ae2820368a8e0de6fd2492b36 FV3 (remotes/origin/nssl_mp_init) + 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 385 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 1761 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 1949 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1928 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 1807 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1760 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1836 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 216 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 480 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 502 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 1842 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 1931 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 261 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 2457 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 1737 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 265 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 1764 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 1873 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 1821 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 1838 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 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 2021 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 315 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 3091 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 2160 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 360 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 2825 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 352 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 5476 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 2114 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 260 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 1714 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_117158/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 = 470.438010 - 0: The maximum resident set size (KB) = 1770556 + 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_117158/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 = 1262.947196 - 0: The maximum resident set size (KB) = 1644792 + 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_117158/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 = 1309.825731 - 0: The maximum resident set size (KB) = 1852176 + 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_117158/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 = 602.245465 - 0: The maximum resident set size (KB) = 977288 + 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_117158/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,14 +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 = 1463.306325 - 0: The maximum resident set size (KB) = 1610540 + 0: The total amount of wall time = 1408.458188 + 0: The maximum resident set size (KB) = 1604616 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_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/cpld_control_p8_intel +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 Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -443,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 = 488.408480 - 0: The maximum resident set size (KB) = 1799220 + 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_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/cpld_restart_p8_intel -Checking test 008 cpld_restart_p8_intel results .... +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 + 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 = 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-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 Comparing sfcf024.tile3.nc .........OK @@ -503,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 = 280.227328 - 0: The maximum resident set size (KB) = 1688880 + 0: The total amount of wall time = 269.361721 + 0: The maximum resident set size (KB) = 1711004 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/cpld_control_qr_p8_intel -Checking test 009 cpld_control_qr_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -575,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 = 496.027187 - 0: The maximum resident set size (KB) = 1817544 + 0: The total amount of wall time = 463.136308 + 0: The maximum resident set size (KB) = 1823900 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/cpld_restart_qr_p8_intel -Checking test 010 cpld_restart_qr_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -635,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 = 287.985834 - 0: The maximum resident set size (KB) = 1706204 + 0: The total amount of wall time = 275.405884 + 0: The maximum resident set size (KB) = 1716196 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/cpld_2threads_p8_intel -Checking test 011 cpld_2threads_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -695,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 = 475.677325 - 0: The maximum resident set size (KB) = 2216508 + 0: The total amount of wall time = 439.189824 + 0: The maximum resident set size (KB) = 2204316 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/cpld_decomp_p8_intel -Checking test 012 cpld_decomp_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -755,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 = 498.334228 - 0: The maximum resident set size (KB) = 1806824 + 0: The total amount of wall time = 475.023163 + 0: The maximum resident set size (KB) = 1772152 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/cpld_mpi_p8_intel -Checking test 013 cpld_mpi_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -815,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 = 424.260091 - 0: The maximum resident set size (KB) = 1755432 + 0: The total amount of wall time = 396.042637 + 0: The maximum resident set size (KB) = 1752848 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/cpld_control_ciceC_p8_intel -Checking test 014 cpld_control_ciceC_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -887,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 = 485.139863 - 0: The maximum resident set size (KB) = 1799916 + 0: The total amount of wall time = 449.503949 + 0: The maximum resident set size (KB) = 1815852 -Test 014 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_117158/cpld_s2sa_p8_intel -Checking test 015 cpld_s2sa_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -945,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 = 462.370595 - 0: The maximum resident set size (KB) = 1767216 + 0: The total amount of wall time = 431.025455 + 0: The maximum resident set size (KB) = 1770700 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/cpld_control_noaero_p8_intel -Checking test 016 cpld_control_noaero_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1016,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 = 367.323825 - 0: The maximum resident set size (KB) = 1645148 + 0: The total amount of wall time = 345.031740 + 0: The maximum resident set size (KB) = 1631016 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/cpld_control_nowave_noaero_p8_intel -Checking test 017 cpld_control_nowave_noaero_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1085,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 = 356.100085 - 0: The maximum resident set size (KB) = 1689640 + 0: The total amount of wall time = 331.624914 + 0: The maximum resident set size (KB) = 1690588 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/cpld_debug_p8_intel -Checking test 018 cpld_debug_p8_intel results .... +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 Comparing sfcf003.tile3.nc .........OK @@ -1145,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 = 1485.646211 - 0: The maximum resident set size (KB) = 1834460 + 0: The total amount of wall time = 651.460873 + 0: The maximum resident set size (KB) = 1812068 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/cpld_debug_noaero_p8_intel -Checking test 019 cpld_debug_noaero_p8_intel results .... +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 Comparing sfcf003.tile3.nc .........OK @@ -1204,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 = 428.912192 - 0: The maximum resident set size (KB) = 1659040 + 0: The total amount of wall time = 420.133657 + 0: The maximum resident set size (KB) = 1657500 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/cpld_control_noaero_p8_agrid_intel -Checking test 020 cpld_control_noaero_p8_agrid_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1273,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 = 355.356411 - 0: The maximum resident set size (KB) = 1691500 + 0: The total amount of wall time = 342.802816 + 0: The maximum resident set size (KB) = 1698216 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/cpld_control_c48_intel -Checking test 021 cpld_control_c48_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -1330,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 = 820.591672 - 0: The maximum resident set size (KB) = 2789520 + 0: The total amount of wall time = 756.859279 + 0: The maximum resident set size (KB) = 2785576 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/cpld_control_p8_faster_intel -Checking test 022 cpld_control_p8_faster_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1402,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 = 429.745255 - 0: The maximum resident set size (KB) = 1796664 + 0: The total amount of wall time = 432.502441 + 0: The maximum resident set size (KB) = 1801392 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/cpld_control_pdlib_p8_intel -Checking test 023 cpld_control_pdlib_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1473,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 = 1249.544824 - 0: The maximum resident set size (KB) = 1660488 + 0: The total amount of wall time = 1265.871220 + 0: The maximum resident set size (KB) = 1665544 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/cpld_restart_pdlib_p8_intel -Checking test 024 cpld_restart_pdlib_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -1532,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 = 607.194487 - 0: The maximum resident set size (KB) = 1023612 + 0: The total amount of wall time = 691.087439 + 0: The maximum resident set size (KB) = 1028600 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/cpld_mpi_pdlib_p8_intel -Checking test 025 cpld_mpi_pdlib_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1603,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 = 1473.618185 - 0: The maximum resident set size (KB) = 1634356 + 0: The total amount of wall time = 1506.906020 + 0: The maximum resident set size (KB) = 1645664 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/cpld_debug_pdlib_p8_intel -Checking test 026 cpld_debug_pdlib_p8_intel results .... +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 Comparing sfcf003.tile3.nc .........OK @@ -1662,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 = 1915.974552 - 0: The maximum resident set size (KB) = 1671732 + 0: The total amount of wall time = 1918.104167 + 0: The maximum resident set size (KB) = 1669624 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_flake_intel -Checking test 027 control_flake_intel results .... +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 Comparing atmf000.nc .........OK @@ -1680,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 = 282.057995 - 0: The maximum resident set size (KB) = 644376 + 0: The total amount of wall time = 265.778131 + 0: The maximum resident set size (KB) = 642580 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_CubedSphereGrid_intel -Checking test 028 control_CubedSphereGrid_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -1714,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 = 197.004263 - 0: The maximum resident set size (KB) = 594104 + 0: The total amount of wall time = 184.503756 + 0: The maximum resident set size (KB) = 598624 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_CubedSphereGrid_parallel_intel -Checking test 029 control_CubedSphereGrid_parallel_intel results .... +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 ............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 ............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 = 209.342789 - 0: The maximum resident set size (KB) = 595788 + 0: The total amount of wall time = 200.345540 + 0: The maximum resident set size (KB) = 597556 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_latlon_intel -Checking test 030 control_latlon_intel results .... +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 Comparing atmf000.nc .........OK @@ -1754,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 = 194.528358 - 0: The maximum resident set size (KB) = 594724 + 0: The total amount of wall time = 190.033016 + 0: The maximum resident set size (KB) = 592924 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_wrtGauss_netcdf_parallel_intel -Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... +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 Comparing atmf000.nc .........OK @@ -1772,15 +1848,61 @@ Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 202.069427 - 0: The maximum resident set size (KB) = 590576 + 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-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 + 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 = 610.278536 +0: The maximum resident set size (KB) = 849920 -Test 031 control_wrtGauss_netcdf_parallel_intel PASS +Test 033 control_c48_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_117158/control_c48_intel -Checking test 032 control_c48_intel results .... +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 Comparing atmf000.nc .........OK @@ -1818,15 +1940,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 -0: The total amount of wall time = 611.952006 -0: The maximum resident set size (KB) = 851080 +0: The total amount of wall time = 612.944942 +0: The maximum resident set size (KB) = 848816 -Test 032 control_c48_intel PASS +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_117158/control_c192_intel -Checking test 033 control_c192_intel results .... +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 Comparing atmf000.nc .........OK @@ -1836,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 = 842.491124 - 0: The maximum resident set size (KB) = 723176 + 0: The total amount of wall time = 739.191245 + 0: The maximum resident set size (KB) = 723972 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_c384_intel -Checking test 034 control_c384_intel results .... +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 Comparing atmf000.nc .........OK @@ -1854,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 = 1130.698311 - 0: The maximum resident set size (KB) = 894420 + 0: The total amount of wall time = 1124.458725 + 0: The maximum resident set size (KB) = 897212 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_c384gdas_intel -Checking test 035 control_c384gdas_intel results .... +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 Comparing atmf000.nc .........OK @@ -1873,46 +1995,46 @@ 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 .........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.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_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_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 ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.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 ............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 ............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 = 1005.261410 - 0: The maximum resident set size (KB) = 1016392 + 0: The total amount of wall time = 974.317072 + 0: The maximum resident set size (KB) = 1019400 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_stochy_intel -Checking test 036 control_stochy_intel results .... +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 Comparing atmf000.nc .........OK @@ -1922,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 = 123.453143 - 0: The maximum resident set size (KB) = 599664 + 0: The total amount of wall time = 122.234726 + 0: The maximum resident set size (KB) = 596060 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_stochy_restart_intel -Checking test 037 control_stochy_restart_intel results .... +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 = 115.752076 - 0: The maximum resident set size (KB) = 432492 + 0: The total amount of wall time = 71.592905 + 0: The maximum resident set size (KB) = 438180 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_lndp_intel -Checking test 038 control_lndp_intel results .... +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 Comparing atmf000.nc .........OK @@ -1954,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 = 123.386149 - 0: The maximum resident set size (KB) = 596848 + 0: The total amount of wall time = 118.394264 + 0: The maximum resident set size (KB) = 598440 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_iovr4_intel -Checking test 039 control_iovr4_intel results .... +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 Comparing sfcf024.nc .........OK @@ -1976,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 = 201.179213 - 0: The maximum resident set size (KB) = 595784 + 0: The total amount of wall time = 189.011441 + 0: The maximum resident set size (KB) = 595968 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_iovr5_intel -Checking test 040 control_iovr5_intel results .... +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 Comparing sfcf024.nc .........OK @@ -1998,15 +2120,15 @@ Checking test 040 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 265.401835 - 0: The maximum resident set size (KB) = 595644 + 0: The total amount of wall time = 191.872429 + 0: The maximum resident set size (KB) = 594136 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_p8_intel -Checking test 041 control_p8_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2052,15 +2174,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 = 285.229225 - 0: The maximum resident set size (KB) = 1556816 + 0: The total amount of wall time = 232.327556 + 0: The maximum resident set size (KB) = 1574568 -Test 041 control_p8_intel PASS +Test 043 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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_p8_ugwpv1_intel -Checking test 042 control_p8_ugwpv1_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2106,15 +2228,69 @@ 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 = 276.201679 - 0: The maximum resident set size (KB) = 1561884 + 0: The total amount of wall time = 229.714326 + 0: The maximum resident set size (KB) = 1557132 -Test 042 control_p8_ugwpv1_intel PASS +Test 044 control_p8.v2.sfc_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_117158/control_restart_p8_intel -Checking test 043 control_restart_p8_intel results .... +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 + 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.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-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 Comparing GFSFLX.GrbF24 .........OK @@ -2152,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 = 128.344323 - 0: The maximum resident set size (KB) = 806276 + 0: The total amount of wall time = 136.613574 + 0: The maximum resident set size (KB) = 808164 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_noqr_p8_intel -Checking test 044 control_noqr_p8_intel results .... +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 Comparing sfcf024.nc ............ALT CHECK......OK @@ -2206,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 = 267.141400 - 0: The maximum resident set size (KB) = 1552620 + 0: The total amount of wall time = 229.711728 + 0: The maximum resident set size (KB) = 1557720 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_restart_noqr_p8_intel -Checking test 045 control_restart_noqr_p8_intel results .... +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 Comparing GFSFLX.GrbF24 .........OK @@ -2252,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.972707 - 0: The maximum resident set size (KB) = 838460 + 0: The total amount of wall time = 129.350110 + 0: The maximum resident set size (KB) = 834028 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_decomp_p8_intel -Checking test 046 control_decomp_p8_intel results .... +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 Comparing atmf000.nc ............ALT CHECK......OK @@ -2302,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 = 331.079079 - 0: The maximum resident set size (KB) = 1542480 + 0: The total amount of wall time = 243.420009 + 0: The maximum resident set size (KB) = 1564152 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_2threads_p8_intel -Checking test 047 control_2threads_p8_intel results .... +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 Comparing atmf000.nc ............ALT CHECK......OK @@ -2352,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 = 300.069480 - 0: The maximum resident set size (KB) = 1655300 + 0: The total amount of wall time = 221.138597 + 0: The maximum resident set size (KB) = 1663480 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_p8_lndp_intel -Checking test 048 control_p8_lndp_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2378,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 = 439.799955 - 0: The maximum resident set size (KB) = 1558760 + 0: The total amount of wall time = 415.047075 + 0: The maximum resident set size (KB) = 1574788 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_p8_rrtmgp_intel -Checking test 049 control_p8_rrtmgp_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2432,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 = 320.697097 - 0: The maximum resident set size (KB) = 1617420 + 0: The total amount of wall time = 314.549451 + 0: The maximum resident set size (KB) = 1632420 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_p8_mynn_intel -Checking test 050 control_p8_mynn_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2486,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 = 237.438734 - 0: The maximum resident set size (KB) = 1563676 + 0: The total amount of wall time = 247.063943 + 0: The maximum resident set size (KB) = 1569704 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/merra2_thompson_intel -Checking test 051 merra2_thompson_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2540,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 = 270.394511 - 0: The maximum resident set size (KB) = 1583980 + 0: The total amount of wall time = 281.214696 + 0: The maximum resident set size (KB) = 1576940 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/regional_control_intel -Checking test 052 regional_control_intel results .... +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 Comparing phyf000.nc .........OK @@ -2558,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 = 434.255386 - 0: The maximum resident set size (KB) = 752192 + 0: The total amount of wall time = 457.406418 + 0: The maximum resident set size (KB) = 762032 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/regional_restart_intel -Checking test 053 regional_restart_intel results .... +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 = 240.344513 - 0: The maximum resident set size (KB) = 936064 + 0: The total amount of wall time = 257.595240 + 0: The maximum resident set size (KB) = 925836 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/regional_decomp_intel -Checking test 054 regional_decomp_intel results .... +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 Comparing phyf000.nc .........OK @@ -2590,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 = 453.598661 - 0: The maximum resident set size (KB) = 750224 + 0: The total amount of wall time = 467.123126 + 0: The maximum resident set size (KB) = 759500 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/regional_2threads_intel -Checking test 055 regional_2threads_intel results .... +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 Comparing phyf000.nc .........OK @@ -2608,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 = 278.469644 - 0: The maximum resident set size (KB) = 743900 + 0: The total amount of wall time = 281.361968 + 0: The maximum resident set size (KB) = 746764 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/regional_netcdf_parallel_intel -Checking test 056 regional_netcdf_parallel_intel results .... +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 = 448.901697 - 0: The maximum resident set size (KB) = 758808 + 0: The total amount of wall time = 637.923117 + 0: The maximum resident set size (KB) = 751628 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/regional_2dwrtdecomp_intel -Checking test 057 regional_2dwrtdecomp_intel results .... +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 Comparing phyf000.nc .........OK @@ -2640,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.693942 - 0: The maximum resident set size (KB) = 759824 + 0: The total amount of wall time = 438.509411 + 0: The maximum resident set size (KB) = 758164 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_control_intel -Checking test 058 rap_control_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2694,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 = 604.229930 - 0: The maximum resident set size (KB) = 986200 + 0: The total amount of wall time = 610.097536 + 0: The maximum resident set size (KB) = 967444 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/regional_spp_sppt_shum_skeb_intel -Checking test 059 regional_spp_sppt_shum_skeb_intel results .... +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 Comparing phyf000.nc .........OK @@ -2712,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 = 331.325445 - 0: The maximum resident set size (KB) = 1207652 + 0: The total amount of wall time = 359.540314 + 0: The maximum resident set size (KB) = 1214124 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_decomp_intel -Checking test 060 rap_decomp_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2766,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 = 631.400042 - 0: The maximum resident set size (KB) = 959700 + 0: The total amount of wall time = 647.847729 + 0: The maximum resident set size (KB) = 969040 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_2threads_intel -Checking test 061 rap_2threads_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2820,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 = 583.293652 - 0: The maximum resident set size (KB) = 1060120 + 0: The total amount of wall time = 588.484777 + 0: The maximum resident set size (KB) = 1065544 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_restart_intel -Checking test 062 rap_restart_intel results .... +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 Comparing GFSFLX.GrbF24 .........OK @@ -2866,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 = 320.151736 - 0: The maximum resident set size (KB) = 967672 + 0: The total amount of wall time = 381.485505 + 0: The maximum resident set size (KB) = 986500 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_sfcdiff_intel -Checking test 063 rap_sfcdiff_intel results .... +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 Comparing sfcf012.nc .........OK @@ -2920,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 = 605.560959 - 0: The maximum resident set size (KB) = 981380 + 0: The total amount of wall time = 612.818264 + 0: The maximum resident set size (KB) = 990296 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_sfcdiff_decomp_intel -Checking test 064 rap_sfcdiff_decomp_intel results .... +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 Comparing sfcf012.nc .........OK @@ -2974,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 = 642.654888 - 0: The maximum resident set size (KB) = 959536 + 0: The total amount of wall time = 647.905688 + 0: The maximum resident set size (KB) = 977920 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_sfcdiff_restart_intel -Checking test 065 rap_sfcdiff_restart_intel results .... +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 Comparing GFSFLX.GrbF12 .........OK @@ -3020,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 = 466.387109 - 0: The maximum resident set size (KB) = 978040 + 0: The total amount of wall time = 564.712480 + 0: The maximum resident set size (KB) = 988620 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/hrrr_control_intel -Checking test 066 hrrr_control_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3074,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 = 311.799529 - 0: The maximum resident set size (KB) = 973972 + 0: The total amount of wall time = 316.412768 + 0: The maximum resident set size (KB) = 973680 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/hrrr_control_decomp_intel -Checking test 067 hrrr_control_decomp_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3128,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 = 328.481601 - 0: The maximum resident set size (KB) = 968352 + 0: The total amount of wall time = 325.610991 + 0: The maximum resident set size (KB) = 970508 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/hrrr_control_2threads_intel -Checking test 068 hrrr_control_2threads_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3182,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 = 285.973505 - 0: The maximum resident set size (KB) = 1047316 + 0: The total amount of wall time = 291.740433 + 0: The maximum resident set size (KB) = 1050408 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/hrrr_control_restart_intel -Checking test 069 hrrr_control_restart_intel results .... +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 = 160.932124 - 0: The maximum resident set size (KB) = 912416 + 0: The total amount of wall time = 187.194022 + 0: The maximum resident set size (KB) = 901532 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rrfs_v1beta_intel -Checking test 070 rrfs_v1beta_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3250,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 = 605.687371 - 0: The maximum resident set size (KB) = 966524 + 0: The total amount of wall time = 601.297435 + 0: The maximum resident set size (KB) = 979744 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rrfs_v1nssl_intel -Checking test 071 rrfs_v1nssl_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3272,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 = 765.478848 - 0: The maximum resident set size (KB) = 1922112 + 0: The total amount of wall time = 760.745462 + 0: The maximum resident set size (KB) = 1929836 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rrfs_v1nssl_nohailnoccn_intel -Checking test 072 rrfs_v1nssl_nohailnoccn_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3294,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 = 761.763259 - 0: The maximum resident set size (KB) = 1917744 + 0: The total amount of wall time = 716.876976 + 0: The maximum resident set size (KB) = 1921780 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_csawmg_intel -Checking test 073 control_csawmg_intel results .... +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 Comparing atmf000.nc .........OK @@ -3312,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 = 486.487877 - 0: The maximum resident set size (KB) = 683444 + 0: The total amount of wall time = 490.824048 + 0: The maximum resident set size (KB) = 686152 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_csawmgt_intel -Checking test 074 control_csawmgt_intel results .... +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 Comparing atmf000.nc .........OK @@ -3330,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 = 482.523468 - 0: The maximum resident set size (KB) = 679624 + 0: The total amount of wall time = 488.600418 + 0: The maximum resident set size (KB) = 685428 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_ras_intel -Checking test 075 control_ras_intel results .... +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 Comparing atmf000.nc .........OK @@ -3348,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 = 262.313410 - 0: The maximum resident set size (KB) = 654408 + 0: The total amount of wall time = 266.781207 + 0: The maximum resident set size (KB) = 657044 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_wam_intel -Checking test 076 control_wam_intel results .... +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 = 165.401894 - 0: The maximum resident set size (KB) = 495856 + 0: The total amount of wall time = 241.981180 + 0: The maximum resident set size (KB) = 494292 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_p8_faster_intel -Checking test 077 control_p8_faster_intel results .... +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 Comparing sfcf024.nc .........OK @@ -3414,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 = 214.040808 - 0: The maximum resident set size (KB) = 1565268 + 0: The total amount of wall time = 208.248048 + 0: The maximum resident set size (KB) = 1562972 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/regional_control_faster_intel -Checking test 078 regional_control_faster_intel results .... +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 Comparing phyf000.nc .........OK @@ -3432,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 = 409.506085 - 0: The maximum resident set size (KB) = 752568 + 0: The total amount of wall time = 440.217469 + 0: The maximum resident set size (KB) = 752468 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_CubedSphereGrid_debug_intel -Checking test 079 control_CubedSphereGrid_debug_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -3466,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 = 206.787449 - 0: The maximum resident set size (KB) = 752076 + 0: The total amount of wall time = 211.362755 + 0: The maximum resident set size (KB) = 751528 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 080 control_wrtGauss_netcdf_parallel_debug_intel results .... +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 .........OK - 0: The total amount of wall time = 199.049699 - 0: The maximum resident set size (KB) = 750468 + 0: The total amount of wall time = 197.313747 + 0: The maximum resident set size (KB) = 749740 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_stochy_debug_intel -Checking test 081 control_stochy_debug_intel results .... +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 = 221.557637 - 0: The maximum resident set size (KB) = 758376 + 0: The total amount of wall time = 227.711630 + 0: The maximum resident set size (KB) = 755748 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_lndp_debug_intel -Checking test 082 control_lndp_debug_intel results .... +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 = 211.754409 - 0: The maximum resident set size (KB) = 760948 + 0: The total amount of wall time = 223.485050 + 0: The maximum resident set size (KB) = 755428 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_csawmg_debug_intel -Checking test 083 control_csawmg_debug_intel results .... +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 = 312.846438 - 0: The maximum resident set size (KB) = 802236 + 0: The total amount of wall time = 338.432189 + 0: The maximum resident set size (KB) = 797380 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_csawmgt_debug_intel -Checking test 084 control_csawmgt_debug_intel results .... +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 = 308.128601 - 0: The maximum resident set size (KB) = 804688 + 0: The total amount of wall time = 336.750128 + 0: The maximum resident set size (KB) = 797028 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_ras_debug_intel -Checking test 085 control_ras_debug_intel results .... +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 = 195.041882 - 0: The maximum resident set size (KB) = 760632 + 0: The total amount of wall time = 208.231344 + 0: The maximum resident set size (KB) = 762160 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_diag_debug_intel -Checking test 086 control_diag_debug_intel results .... +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 = 201.621401 - 0: The maximum resident set size (KB) = 815932 + 0: The total amount of wall time = 230.950116 + 0: The maximum resident set size (KB) = 808072 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_debug_p8_intel -Checking test 087 control_debug_p8_intel results .... +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 = 211.205111 - 0: The maximum resident set size (KB) = 1575728 + 0: The total amount of wall time = 259.820649 + 0: The maximum resident set size (KB) = 1573912 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/regional_debug_intel -Checking test 088 regional_debug_intel results .... +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 = 1306.296628 - 0: The maximum resident set size (KB) = 767720 + 0: The total amount of wall time = 1320.204556 + 0: The maximum resident set size (KB) = 771704 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_control_debug_intel -Checking test 089 rap_control_debug_intel results .... +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 = 368.463201 - 0: The maximum resident set size (KB) = 1132524 + 0: The total amount of wall time = 412.394126 + 0: The maximum resident set size (KB) = 1139088 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/hrrr_control_debug_intel -Checking test 090 hrrr_control_debug_intel results .... +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 = 351.636205 - 0: The maximum resident set size (KB) = 1129352 + 0: The total amount of wall time = 368.971701 + 0: The maximum resident set size (KB) = 1141676 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/hrrr_gf_debug_intel -Checking test 091 hrrr_gf_debug_intel results .... +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 = 391.782077 - 0: The maximum resident set size (KB) = 1140116 + 0: The total amount of wall time = 384.144308 + 0: The maximum resident set size (KB) = 1134896 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/hrrr_c3_debug_intel -Checking test 092 hrrr_c3_debug_intel results .... +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 = 392.738756 - 0: The maximum resident set size (KB) = 1144544 + 0: The total amount of wall time = 374.292742 + 0: The maximum resident set size (KB) = 1141004 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_unified_drag_suite_debug_intel -Checking test 093 rap_unified_drag_suite_debug_intel results .... +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 = 376.572901 - 0: The maximum resident set size (KB) = 1146328 + 0: The total amount of wall time = 379.345896 + 0: The maximum resident set size (KB) = 1127784 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_diag_debug_intel -Checking test 094 rap_diag_debug_intel results .... +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 = 398.423434 - 0: The maximum resident set size (KB) = 1213300 + 0: The total amount of wall time = 372.839704 + 0: The maximum resident set size (KB) = 1233016 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_cires_ugwp_debug_intel -Checking test 095 rap_cires_ugwp_debug_intel results .... +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 = 392.334432 - 0: The maximum resident set size (KB) = 1134472 + 0: The total amount of wall time = 387.737180 + 0: The maximum resident set size (KB) = 1132164 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_unified_ugwp_debug_intel -Checking test 096 rap_unified_ugwp_debug_intel results .... +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 = 374.301814 - 0: The maximum resident set size (KB) = 1129852 + 0: The total amount of wall time = 387.158771 + 0: The maximum resident set size (KB) = 1148900 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_lndp_debug_intel -Checking test 097 rap_lndp_debug_intel results .... +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 = 370.969721 - 0: The maximum resident set size (KB) = 1147224 + 0: The total amount of wall time = 414.412666 + 0: The maximum resident set size (KB) = 1134836 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_progcld_thompson_debug_intel -Checking test 098 rap_progcld_thompson_debug_intel results .... +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 = 357.111576 - 0: The maximum resident set size (KB) = 1145404 + 0: The total amount of wall time = 402.580284 + 0: The maximum resident set size (KB) = 1140684 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_noah_debug_intel -Checking test 099 rap_noah_debug_intel results .... +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 = 354.389036 - 0: The maximum resident set size (KB) = 1135432 + 0: The total amount of wall time = 397.754075 + 0: The maximum resident set size (KB) = 1138404 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_sfcdiff_debug_intel -Checking test 100 rap_sfcdiff_debug_intel results .... +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 = 413.693065 - 0: The maximum resident set size (KB) = 1140752 + 0: The total amount of wall time = 420.985075 + 0: The maximum resident set size (KB) = 1127668 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +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 = 615.843958 - 0: The maximum resident set size (KB) = 1138572 + 0: The total amount of wall time = 622.675988 + 0: The maximum resident set size (KB) = 1135428 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rrfs_v1beta_debug_intel -Checking test 102 rrfs_v1beta_debug_intel results .... +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 = 357.118039 - 0: The maximum resident set size (KB) = 1131432 + 0: The total amount of wall time = 365.983416 + 0: The maximum resident set size (KB) = 1132500 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_clm_lake_debug_intel -Checking test 103 rap_clm_lake_debug_intel results .... +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 = 436.274404 - 0: The maximum resident set size (KB) = 1135772 + 0: The total amount of wall time = 500.533720 + 0: The maximum resident set size (KB) = 1147348 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_flake_debug_intel -Checking test 104 rap_flake_debug_intel results .... +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 = 359.580055 - 0: The maximum resident set size (KB) = 1146812 + 0: The total amount of wall time = 372.260984 + 0: The maximum resident set size (KB) = 1134312 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/gnv1_c96_no_nest_debug_intel -Checking test 105 gnv1_c96_no_nest_debug_intel results .... +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 Comparing sfcf002.nc .........OK @@ -3864,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 = 626.089767 - 0: The maximum resident set size (KB) = 1147464 + 0: The total amount of wall time = 636.570167 + 0: The maximum resident set size (KB) = 1147328 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_wam_debug_intel -Checking test 106 control_wam_debug_intel results .... +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 = 358.987494 - 0: The maximum resident set size (KB) = 433216 + 0: The total amount of wall time = 359.733480 + 0: The maximum resident set size (KB) = 431712 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +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 Comparing phyf000.nc .........OK @@ -3894,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 = 311.664468 - 0: The maximum resident set size (KB) = 1078504 + 0: The total amount of wall time = 315.699958 + 0: The maximum resident set size (KB) = 1069572 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_control_dyn32_phy32_intel -Checking test 108 rap_control_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3948,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 = 495.518318 - 0: The maximum resident set size (KB) = 888548 + 0: The total amount of wall time = 492.326583 + 0: The maximum resident set size (KB) = 888276 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/hrrr_control_dyn32_phy32_intel -Checking test 109 hrrr_control_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4002,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 = 262.999197 - 0: The maximum resident set size (KB) = 869000 + 0: The total amount of wall time = 258.400150 + 0: The maximum resident set size (KB) = 860660 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_2threads_dyn32_phy32_intel -Checking test 110 rap_2threads_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4056,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 = 475.804387 - 0: The maximum resident set size (KB) = 934908 + 0: The total amount of wall time = 465.018652 + 0: The maximum resident set size (KB) = 946184 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/hrrr_control_2threads_dyn32_phy32_intel -Checking test 111 hrrr_control_2threads_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4110,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 = 248.363951 - 0: The maximum resident set size (KB) = 905196 + 0: The total amount of wall time = 233.068344 + 0: The maximum resident set size (KB) = 908712 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/hrrr_control_decomp_dyn32_phy32_intel -Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4164,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 = 277.087345 - 0: The maximum resident set size (KB) = 856500 + 0: The total amount of wall time = 267.227455 + 0: The maximum resident set size (KB) = 841436 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_restart_dyn32_phy32_intel -Checking test 113 rap_restart_dyn32_phy32_intel results .... +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 Comparing GFSFLX.GrbF12 .........OK @@ -4210,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 = 370.244308 - 0: The maximum resident set size (KB) = 883716 + 0: The total amount of wall time = 362.989915 + 0: The maximum resident set size (KB) = 895280 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/hrrr_control_restart_dyn32_phy32_intel -Checking test 114 hrrr_control_restart_dyn32_phy32_intel results .... +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 = 140.616695 - 0: The maximum resident set size (KB) = 843352 + 0: The total amount of wall time = 133.425572 + 0: The maximum resident set size (KB) = 839884 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/conus13km_control_intel -Checking test 115 conus13km_control_intel results .... +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 Comparing sfcf002.nc .........OK @@ -4247,41 +4423,41 @@ 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 = 173.924017 - 0: The maximum resident set size (KB) = 1094844 + 0: The total amount of wall time = 157.001414 + 0: The maximum resident set size (KB) = 1091696 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/conus13km_2threads_intel -Checking test 116 conus13km_2threads_intel results .... +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.651248 - 0: The maximum resident set size (KB) = 1041932 + 0: The total amount of wall time = 68.047240 + 0: The maximum resident set size (KB) = 1041272 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/conus13km_restart_mismatch_intel -Checking test 117 conus13km_restart_mismatch_intel results .... +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 = 86.026867 - 0: The maximum resident set size (KB) = 1011832 + 0: The total amount of wall time = 84.616591 + 0: The maximum resident set size (KB) = 1011036 -Test 117 conus13km_restart_mismatch_intel PASS +Test 120 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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_control_dyn64_phy32_intel -Checking test 118 rap_control_dyn64_phy32_intel results .... +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 @@ -4327,43 +4503,43 @@ 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 = 381.117282 - 0: The maximum resident set size (KB) = 891144 + 0: The total amount of wall time = 323.723216 + 0: The maximum resident set size (KB) = 895060 -Test 118 rap_control_dyn64_phy32_intel PASS +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_117158/rap_control_debug_dyn32_phy32_intel -Checking test 119 rap_control_debug_dyn32_phy32_intel results .... +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 = 363.904924 - 0: The maximum resident set size (KB) = 1023248 + 0: The total amount of wall time = 353.162945 + 0: The maximum resident set size (KB) = 1017040 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/hrrr_control_debug_dyn32_phy32_intel -Checking test 120 hrrr_control_debug_dyn32_phy32_intel results .... +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 = 347.768268 - 0: The maximum resident set size (KB) = 1019948 + 0: The total amount of wall time = 347.442231 + 0: The maximum resident set size (KB) = 1006316 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/conus13km_debug_intel -Checking test 121 conus13km_debug_intel results .... +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 Comparing atmf000.nc .........OK @@ -4376,15 +4552,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 = 1099.841682 - 0: The maximum resident set size (KB) = 1129468 + 0: The total amount of wall time = 1092.506712 + 0: The maximum resident set size (KB) = 1128048 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/conus13km_debug_qr_intel -Checking test 122 conus13km_debug_qr_intel results .... +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 Comparing atmf000.nc .........OK @@ -4397,82 +4573,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 = 1151.650096 - 0: The maximum resident set size (KB) = 867972 + 0: The total amount of wall time = 1094.715932 + 0: The maximum resident set size (KB) = 844840 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/conus13km_debug_2threads_intel -Checking test 123 conus13km_debug_2threads_intel results .... +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 = 639.267455 - 0: The maximum resident set size (KB) = 1074804 + 0: The total amount of wall time = 632.574106 + 0: The maximum resident set size (KB) = 1076568 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/conus13km_radar_tten_debug_intel -Checking test 124 conus13km_radar_tten_debug_intel results .... +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 = 1098.945892 - 0: The maximum resident set size (KB) = 1197720 + 0: The total amount of wall time = 1092.346453 + 0: The maximum resident set size (KB) = 1188812 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/rap_control_dyn64_phy32_debug_intel -Checking test 125 rap_control_dyn64_phy32_debug_intel results .... +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 = 381.994008 - 0: The maximum resident set size (KB) = 1052868 + 0: The total amount of wall time = 353.299285 + 0: The maximum resident set size (KB) = 1063104 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/hafs_regional_atm_intel -Checking test 126 hafs_regional_atm_intel results .... +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 = 451.140554 - 0: The maximum resident set size (KB) = 706496 + 0: The total amount of wall time = 415.161700 + 0: The maximum resident set size (KB) = 710044 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 127 hafs_regional_atm_thompson_gfdlsf_intel results .... +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 = 452.686891 - 0: The maximum resident set size (KB) = 1080640 + 0: The total amount of wall time = 396.476427 + 0: The maximum resident set size (KB) = 1082184 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/hafs_regional_atm_ocn_intel -Checking test 128 hafs_regional_atm_ocn_intel results .... +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 Comparing archv.2019_241_06.a .........OK @@ -4480,15 +4656,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 = 595.172419 - 0: The maximum resident set size (KB) = 763860 + 0: The total amount of wall time = 543.913780 + 0: The maximum resident set size (KB) = 760212 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/hafs_regional_atm_wav_intel -Checking test 129 hafs_regional_atm_wav_intel results .... +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 Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4496,15 +4672,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 = 1037.962537 - 0: The maximum resident set size (KB) = 788700 + 0: The total amount of wall time = 948.970014 + 0: The maximum resident set size (KB) = 800416 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/hafs_regional_atm_ocn_wav_intel -Checking test 130 hafs_regional_atm_ocn_wav_intel results .... +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 Comparing archv.2019_241_06.a .........OK @@ -4514,15 +4690,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 = 1200.955485 - 0: The maximum resident set size (KB) = 813452 + 0: The total amount of wall time = 1068.321048 + 0: The maximum resident set size (KB) = 815872 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/gnv1_nested_intel -Checking test 131 gnv1_nested_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4532,185 +4708,185 @@ Checking test 131 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.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.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.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 ............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.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.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 ............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 ............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.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 = 383.084282 - 0: The maximum resident set size (KB) = 772012 + 0: The total amount of wall time = 365.957252 + 0: The maximum resident set size (KB) = 772940 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/hafs_regional_docn_intel -Checking test 132 hafs_regional_docn_intel results .... +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 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 = 546.387951 - 0: The maximum resident set size (KB) = 756396 + 0: The total amount of wall time = 486.948595 + 0: The maximum resident set size (KB) = 762132 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/hafs_regional_docn_oisst_intel -Checking test 133 hafs_regional_docn_oisst_intel results .... +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 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 = 557.407399 - 0: The maximum resident set size (KB) = 749404 + 0: The total amount of wall time = 519.498295 + 0: The maximum resident set size (KB) = 749208 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/datm_cdeps_control_cfsr_intel -Checking test 134 datm_cdeps_control_cfsr_intel results .... +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 = 259.234085 - 0: The maximum resident set size (KB) = 1038188 + 0: The total amount of wall time = 202.854371 + 0: The maximum resident set size (KB) = 1036812 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/datm_cdeps_restart_cfsr_intel -Checking test 135 datm_cdeps_restart_cfsr_intel results .... +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 = 118.724179 - 0: The maximum resident set size (KB) = 1006428 + 0: The total amount of wall time = 123.553902 + 0: The maximum resident set size (KB) = 1010096 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/datm_cdeps_control_gefs_intel -Checking test 136 datm_cdeps_control_gefs_intel results .... +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 = 217.195732 - 0: The maximum resident set size (KB) = 908908 + 0: The total amount of wall time = 196.552702 + 0: The maximum resident set size (KB) = 911324 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/datm_cdeps_iau_gefs_intel -Checking test 137 datm_cdeps_iau_gefs_intel results .... +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 = 231.980402 - 0: The maximum resident set size (KB) = 905768 + 0: The total amount of wall time = 200.814502 + 0: The maximum resident set size (KB) = 912628 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/datm_cdeps_stochy_gefs_intel -Checking test 138 datm_cdeps_stochy_gefs_intel results .... +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 = 207.100416 - 0: The maximum resident set size (KB) = 906256 + 0: The total amount of wall time = 204.959901 + 0: The maximum resident set size (KB) = 912120 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/datm_cdeps_ciceC_cfsr_intel -Checking test 139 datm_cdeps_ciceC_cfsr_intel results .... +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.687919 - 0: The maximum resident set size (KB) = 1028420 + 0: The total amount of wall time = 205.511636 + 0: The maximum resident set size (KB) = 1040232 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/datm_cdeps_bulk_cfsr_intel -Checking test 140 datm_cdeps_bulk_cfsr_intel results .... +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 = 212.151922 - 0: The maximum resident set size (KB) = 1029768 + 0: The total amount of wall time = 205.511114 + 0: The maximum resident set size (KB) = 1042048 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/datm_cdeps_bulk_gefs_intel -Checking test 141 datm_cdeps_bulk_gefs_intel results .... +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 = 221.161258 - 0: The maximum resident set size (KB) = 909028 + 0: The total amount of wall time = 186.200450 + 0: The maximum resident set size (KB) = 915604 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/datm_cdeps_mx025_cfsr_intel -Checking test 142 datm_cdeps_mx025_cfsr_intel results .... +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 Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4718,15 +4894,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 = 474.491117 - 0: The maximum resident set size (KB) = 881064 + 0: The total amount of wall time = 529.774122 + 0: The maximum resident set size (KB) = 880788 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/datm_cdeps_mx025_gefs_intel -Checking test 143 datm_cdeps_mx025_gefs_intel results .... +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 Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4734,78 +4910,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 = 497.113362 - 0: The maximum resident set size (KB) = 826888 + 0: The total amount of wall time = 469.175957 + 0: The maximum resident set size (KB) = 838632 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/datm_cdeps_multiple_files_cfsr_intel -Checking test 144 datm_cdeps_multiple_files_cfsr_intel results .... +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 = 211.861244 - 0: The maximum resident set size (KB) = 1047244 + 0: The total amount of wall time = 203.911044 + 0: The maximum resident set size (KB) = 1039072 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/datm_cdeps_3072x1536_cfsr_intel -Checking test 145 datm_cdeps_3072x1536_cfsr_intel results .... +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 = 306.496106 - 0: The maximum resident set size (KB) = 2374340 + 0: The total amount of wall time = 286.455759 + 0: The maximum resident set size (KB) = 2390100 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/datm_cdeps_gfs_intel -Checking test 146 datm_cdeps_gfs_intel results .... +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 = 295.088939 - 0: The maximum resident set size (KB) = 2384632 + 0: The total amount of wall time = 290.255899 + 0: The maximum resident set size (KB) = 2348952 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/datm_cdeps_debug_cfsr_intel -Checking test 147 datm_cdeps_debug_cfsr_intel results .... +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 = 460.711066 - 0: The maximum resident set size (KB) = 990956 + 0: The total amount of wall time = 464.668999 + 0: The maximum resident set size (KB) = 980696 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/datm_cdeps_control_cfsr_faster_intel -Checking test 148 datm_cdeps_control_cfsr_faster_intel results .... +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 = 211.583486 - 0: The maximum resident set size (KB) = 1030212 + 0: The total amount of wall time = 204.159634 + 0: The maximum resident set size (KB) = 1041940 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/datm_cdeps_lnd_gswp3_intel -Checking test 149 datm_cdeps_lnd_gswp3_intel results .... +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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4813,15 +4989,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 = 101.584496 - 0: The maximum resident set size (KB) = 226960 + 0: The total amount of wall time = 79.209631 + 0: The maximum resident set size (KB) = 224600 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/datm_cdeps_lnd_era5_intel -Checking test 150 datm_cdeps_lnd_era5_intel results .... +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 Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -4829,15 +5005,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 = 94.507391 - 0: The maximum resident set size (KB) = 245596 + 0: The total amount of wall time = 68.544359 + 0: The maximum resident set size (KB) = 248888 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/datm_cdeps_lnd_era5_rst_intel -Checking test 151 datm_cdeps_lnd_era5_rst_intel results .... +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 Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -4845,15 +5021,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 = 46.990406 - 0: The maximum resident set size (KB) = 244904 + 0: The total amount of wall time = 43.573184 + 0: The maximum resident set size (KB) = 246788 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_p8_atmlnd_sbs_intel -Checking test 152 control_p8_atmlnd_sbs_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -4941,15 +5117,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 = 987.954340 - 0: The maximum resident set size (KB) = 1580472 + 0: The total amount of wall time = 614.389627 + 0: The maximum resident set size (KB) = 1575892 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_p8_atmlnd_intel -Checking test 153 control_p8_atmlnd_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -5037,15 +5213,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 = 995.156868 - 0: The maximum resident set size (KB) = 1581072 + 0: The total amount of wall time = 621.053022 + 0: The maximum resident set size (KB) = 1576120 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_restart_p8_atmlnd_intel -Checking test 154 control_restart_p8_atmlnd_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -5065,15 +5241,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 = 545.305308 - 0: The maximum resident set size (KB) = 849228 + 0: The total amount of wall time = 306.682487 + 0: The maximum resident set size (KB) = 852240 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/atmwav_control_noaero_p8_intel -Checking test 155 atmwav_control_noaero_p8_intel results .... +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 Comparing atmf000.nc .........OK @@ -5115,15 +5291,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 = 137.297518 - 0: The maximum resident set size (KB) = 1582236 + 0: The total amount of wall time = 130.054074 + 0: The maximum resident set size (KB) = 1589052 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/control_atmwav_intel -Checking test 156 control_atmwav_intel results .... +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 Comparing atmf000.nc .........OK @@ -5166,66 +5342,19 @@ 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 = 134.717305 - 0: The maximum resident set size (KB) = 598216 + 0: The total amount of wall time = 124.585846 + 0: The maximum resident set size (KB) = 597616 -Test 156 control_atmwav_intel PASS +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_117158/atmaero_control_p8_intel -Checking test 157 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 = 404.648221 - 0: The maximum resident set size (KB) = 1670384 +Test 160 atmaero_control_p8_intel FAIL -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/atmaero_control_p8_rad_intel -Checking test 158 atmaero_control_p8_rad_intel results .... +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 Comparing atmf000.nc .........OK @@ -5268,15 +5397,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 = 457.753123 - 0: The maximum resident set size (KB) = 1697552 + 0: The total amount of wall time = 376.854059 + 0: The maximum resident set size (KB) = 1689624 -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/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_117158/atmaero_control_p8_rad_micro_intel -Checking test 159 atmaero_control_p8_rad_micro_intel results .... +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 Comparing atmf000.nc .........OK @@ -5319,32 +5448,40 @@ 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 = 494.595403 - 0: The maximum resident set size (KB) = 1710944 + 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 -Test 159 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 -Wed Jan 31 00:11:40 UTC 2024 +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 Start Regression test -Testing UFSWM Hash: c497d1e753e2c1f45c3215e447a9186451465a56 +Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 13ed05982efc95c077efc3b9609688554e3a854c CMEPS-interface/CMEPS (cmeps_v0.4.1-1409-g13ed059) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 400e2129e147212ae2820368a8e0de6fd2492b36 FV3 (remotes/origin/nssl_mp_init) + 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 s2swa_32bit_pdlib_debug_intel elapsed time 354 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_20611/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 @@ -5396,12 +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 = 1795.621046 - 0: The maximum resident set size (KB) = 1635476 + 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-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 -Wed Jan 31 00:53:10 UTC 2024 -Elapsed time: 00h:41m:31s. 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 46cefb07e0..783f3a344d 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,61 +1,62 @@ -Tue Jan 30 08:23:11 CST 2024 +Thu Feb 8 08:58:12 CST 2024 Start Regression test -Testing UFSWM Hash: ec848db8c3a6942ff39becb62b9742902b80ade3 +Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 13ed05982efc95c077efc3b9609688554e3a854c CMEPS-interface/CMEPS (cmeps_v0.4.1-2302-g13ed059) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 400e2129e147212ae2820368a8e0de6fd2492b36 FV3 (remotes/origin/nssl_mp_init) + 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 649 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 264 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 299 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 655 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 761 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 738 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 718 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 663 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 254 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 385 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 426 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 64 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 733 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 240 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 742 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 749 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 782 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 654 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 208 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 655 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 711 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 763 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 751 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 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_intel elapsed time 1334 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 325 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 1161 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 321 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 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 1148 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 215 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 632 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_130287/cpld_control_p8_mixedmode_intel +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 + +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 @@ -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 = 293.568676 - 0: The maximum resident set size (KB) = 3176836 + 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_130287/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 @@ -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 = 967.130176 - 0: The maximum resident set size (KB) = 1745916 + 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_130287/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 @@ -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 = 1021.783027 - 0: The maximum resident set size (KB) = 2027344 + 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_130287/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 @@ -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 = 477.868600 - 0: The maximum resident set size (KB) = 1109360 + 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_130287/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 @@ -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 = 1094.534176 - 0: The maximum resident set size (KB) = 1643836 + 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_130287/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 @@ -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 = 1356.159288 - 0: The maximum resident set size (KB) = 1691020 + 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_130287/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 @@ -506,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 = 324.008348 - 0: The maximum resident set size (KB) = 3211592 + 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_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_130287/cpld_restart_p8_intel -Checking test 008 cpld_restart_p8_intel results .... +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 + 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.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-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 Comparing sfcf024.tile3.nc .........OK @@ -566,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 = 191.559541 - 0: The maximum resident set size (KB) = 3258420 + 0: The total amount of wall time = 187.362371 + 0: The maximum resident set size (KB) = 3250844 -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_130287/cpld_control_qr_p8_intel -Checking test 009 cpld_control_qr_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -638,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 = 323.032707 - 0: The maximum resident set size (KB) = 3241252 + 0: The total amount of wall time = 323.703547 + 0: The maximum resident set size (KB) = 3237888 -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_130287/cpld_restart_qr_p8_intel -Checking test 010 cpld_restart_qr_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -698,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 = 191.690268 - 0: The maximum resident set size (KB) = 3265452 + 0: The total amount of wall time = 192.101518 + 0: The maximum resident set size (KB) = 3261784 -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_130287/cpld_2threads_p8_intel -Checking test 011 cpld_2threads_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -758,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 = 354.421679 - 0: The maximum resident set size (KB) = 3552100 + 0: The total amount of wall time = 353.190437 + 0: The maximum resident set size (KB) = 3554292 -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_130287/cpld_decomp_p8_intel -Checking test 012 cpld_decomp_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -818,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 = 323.136971 - 0: The maximum resident set size (KB) = 3206620 + 0: The total amount of wall time = 326.639443 + 0: The maximum resident set size (KB) = 3208708 -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_130287/cpld_mpi_p8_intel -Checking test 013 cpld_mpi_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -878,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 = 269.001293 - 0: The maximum resident set size (KB) = 3069200 + 0: The total amount of wall time = 266.925501 + 0: The maximum resident set size (KB) = 3062824 -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_130287/cpld_control_ciceC_p8_intel -Checking test 014 cpld_control_ciceC_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -950,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 = 321.375880 - 0: The maximum resident set size (KB) = 3213760 + 0: The total amount of wall time = 325.345357 + 0: The maximum resident set size (KB) = 3212136 -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_130287/cpld_control_c192_p8_intel -Checking test 015 cpld_control_c192_p8_intel results .... +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 Comparing sfcf030.tile3.nc .........OK @@ -1010,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 = 579.523527 - 0: The maximum resident set size (KB) = 3349220 + 0: The total amount of wall time = 576.825323 + 0: The maximum resident set size (KB) = 3335944 -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_130287/cpld_restart_c192_p8_intel -Checking test 016 cpld_restart_c192_p8_intel results .... +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 Comparing sfcf030.tile3.nc .........OK @@ -1070,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 = 359.552172 - 0: The maximum resident set size (KB) = 3627932 + 0: The total amount of wall time = 355.755081 + 0: The maximum resident set size (KB) = 3620040 -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_130287/cpld_bmark_p8_intel -Checking test 017 cpld_bmark_p8_intel results .... +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 Comparing GFSFLX.GrbF06 .........OK @@ -1125,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 = 627.936749 - 0: The maximum resident set size (KB) = 4123820 + 0: The total amount of wall time = 636.044712 + 0: The maximum resident set size (KB) = 4122260 -Test 017 cpld_bmark_p8_intel PASS Tries: 2 +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_130287/cpld_restart_bmark_p8_intel -Checking test 018 cpld_restart_bmark_p8_intel results .... +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 Comparing GFSFLX.GrbF06 .........OK @@ -1180,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 = 384.452285 - 0: The maximum resident set size (KB) = 4365304 + 0: The total amount of wall time = 382.879580 + 0: The maximum resident set size (KB) = 4370596 -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_130287/cpld_s2sa_p8_intel -Checking test 019 cpld_s2sa_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -1238,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 = 310.176798 - 0: The maximum resident set size (KB) = 3174692 + 0: The total amount of wall time = 308.473946 + 0: The maximum resident set size (KB) = 3173064 -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_130287/cpld_control_noaero_p8_intel -Checking test 020 cpld_control_noaero_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1309,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.857454 - 0: The maximum resident set size (KB) = 1735324 + 0: The total amount of wall time = 261.157650 + 0: The maximum resident set size (KB) = 1740300 -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_130287/cpld_control_nowave_noaero_p8_intel -Checking test 021 cpld_control_nowave_noaero_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1378,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 = 246.202638 - 0: The maximum resident set size (KB) = 1779024 + 0: The total amount of wall time = 249.449168 + 0: The maximum resident set size (KB) = 1785088 -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_130287/cpld_debug_p8_intel -Checking test 022 cpld_debug_p8_intel results .... +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 Comparing sfcf003.tile3.nc .........OK @@ -1438,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 = 497.957408 - 0: The maximum resident set size (KB) = 3245064 + 0: The total amount of wall time = 496.179319 + 0: The maximum resident set size (KB) = 3249868 -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_130287/cpld_debug_noaero_p8_intel -Checking test 023 cpld_debug_noaero_p8_intel results .... +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 Comparing sfcf003.tile3.nc .........OK @@ -1497,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 = 339.083808 - 0: The maximum resident set size (KB) = 1757180 + 0: The total amount of wall time = 344.738981 + 0: The maximum resident set size (KB) = 1748116 -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_130287/cpld_control_noaero_p8_agrid_intel -Checking test 024 cpld_control_noaero_p8_agrid_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1566,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 = 248.228550 - 0: The maximum resident set size (KB) = 1786088 + 0: The total amount of wall time = 249.529783 + 0: The maximum resident set size (KB) = 1772184 -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_130287/cpld_control_c48_intel -Checking test 025 cpld_control_c48_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -1623,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 = 476.558846 - 0: The maximum resident set size (KB) = 2834424 + 0: The total amount of wall time = 471.642374 + 0: The maximum resident set size (KB) = 2828716 -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_130287/cpld_control_p8_faster_intel -Checking test 026 cpld_control_p8_faster_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1695,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 = 307.269618 - 0: The maximum resident set size (KB) = 3207904 + 0: The total amount of wall time = 306.704800 + 0: The maximum resident set size (KB) = 3204164 -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_130287/cpld_control_pdlib_p8_intel -Checking test 027 cpld_control_pdlib_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1766,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 = 983.550925 - 0: The maximum resident set size (KB) = 1782524 + 0: The total amount of wall time = 1066.581337 + 0: The maximum resident set size (KB) = 1774328 -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_130287/cpld_restart_pdlib_p8_intel -Checking test 028 cpld_restart_pdlib_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -1825,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 = 471.658910 - 0: The maximum resident set size (KB) = 1179044 + 0: The total amount of wall time = 473.941834 + 0: The maximum resident set size (KB) = 1178848 -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_130287/cpld_mpi_pdlib_p8_intel -Checking test 029 cpld_mpi_pdlib_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1896,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 = 1092.828276 - 0: The maximum resident set size (KB) = 1667020 + 0: The total amount of wall time = 1093.224118 + 0: The maximum resident set size (KB) = 1677952 -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_130287/cpld_debug_pdlib_p8_intel -Checking test 030 cpld_debug_pdlib_p8_intel results .... +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 Comparing sfcf003.tile3.nc .........OK @@ -1955,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 = 1449.311375 - 0: The maximum resident set size (KB) = 1711088 + 0: The total amount of wall time = 1501.564132 + 0: The maximum resident set size (KB) = 1728284 -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_130287/control_flake_intel -Checking test 031 control_flake_intel results .... +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 Comparing atmf000.nc .........OK @@ -1973,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 = 197.683202 - 0: The maximum resident set size (KB) = 695488 + 0: The total amount of wall time = 195.007873 + 0: The maximum resident set size (KB) = 700664 -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_130287/control_CubedSphereGrid_intel -Checking test 032 control_CubedSphereGrid_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -2007,15 +2080,15 @@ 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.865957 - 0: The maximum resident set size (KB) = 648944 + 0: The total amount of wall time = 132.782472 + 0: The maximum resident set size (KB) = 646916 -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_130287/control_CubedSphereGrid_parallel_intel -Checking test 033 control_CubedSphereGrid_parallel_intel results .... +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 Comparing atmf000.nc .........OK @@ -2029,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.987217 - 0: The maximum resident set size (KB) = 653332 + 0: The total amount of wall time = 139.936098 + 0: The maximum resident set size (KB) = 654516 -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_130287/control_latlon_intel -Checking test 034 control_latlon_intel results .... +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 Comparing atmf000.nc .........OK @@ -2047,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 = 135.136032 - 0: The maximum resident set size (KB) = 655892 + 0: The total amount of wall time = 136.465317 + 0: The maximum resident set size (KB) = 649980 -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_130287/control_wrtGauss_netcdf_parallel_intel -Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... +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 Comparing atmf000.nc .........OK @@ -2065,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.774904 - 0: The maximum resident set size (KB) = 645232 + 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-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 + 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.276384 +0: The maximum resident set size (KB) = 874608 -Test 035 control_wrtGauss_netcdf_parallel_intel PASS +Test 037 control_c48_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_130287/control_c48_intel -Checking test 036 control_c48_intel results .... +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 Comparing atmf000.nc .........OK @@ -2111,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 = 347.282701 -0: The maximum resident set size (KB) = 879044 +0: The total amount of wall time = 346.796887 +0: The maximum resident set size (KB) = 871508 -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_130287/control_c192_intel -Checking test 037 control_c192_intel results .... +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 Comparing atmf000.nc .........OK @@ -2129,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 = 534.554392 - 0: The maximum resident set size (KB) = 845604 + 0: The total amount of wall time = 531.187913 + 0: The maximum resident set size (KB) = 857336 -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_130287/control_c384_intel -Checking test 038 control_c384_intel results .... +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 Comparing atmf000.nc .........OK @@ -2147,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 = 587.758163 - 0: The maximum resident set size (KB) = 1246964 + 0: The total amount of wall time = 655.699185 + 0: The maximum resident set size (KB) = 1250816 -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_130287/control_c384gdas_intel -Checking test 039 control_c384gdas_intel results .... +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 Comparing atmf000.nc .........OK @@ -2170,22 +2289,22 @@ Checking test 039 control_c384gdas_intel results .... 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 ............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 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.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 .........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 @@ -2197,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 = 522.109619 - 0: The maximum resident set size (KB) = 1352696 + 0: The total amount of wall time = 522.155681 + 0: The maximum resident set size (KB) = 1356696 -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_130287/control_stochy_intel -Checking test 040 control_stochy_intel results .... +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 Comparing atmf000.nc .........OK @@ -2215,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 = 89.139998 - 0: The maximum resident set size (KB) = 656104 + 0: The total amount of wall time = 88.710628 + 0: The maximum resident set size (KB) = 650120 -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_130287/control_stochy_restart_intel -Checking test 041 control_stochy_restart_intel results .... +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 = 51.301588 - 0: The maximum resident set size (KB) = 503388 + 0: The total amount of wall time = 51.185074 + 0: The maximum resident set size (KB) = 499248 -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_130287/control_lndp_intel -Checking test 042 control_lndp_intel results .... +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 Comparing atmf000.nc .........OK @@ -2247,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 = 84.916755 - 0: The maximum resident set size (KB) = 646952 + 0: The total amount of wall time = 85.764689 + 0: The maximum resident set size (KB) = 652640 + +Test 044 control_lndp_intel PASS + -Test 042 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 +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 = 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_iovr4_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_130287/control_iovr4_intel -Checking test 043 control_iovr4_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2269,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 = 135.826699 - 0: The maximum resident set size (KB) = 651440 + 0: The total amount of wall time = 135.876252 + 0: The maximum resident set size (KB) = 651904 -Test 043 control_iovr4_intel PASS +Test 046 control_iovr5_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_130287/control_iovr5_intel -Checking test 044 control_iovr5_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2290,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 = 136.502925 - 0: The maximum resident set size (KB) = 651400 + 0: The total amount of wall time = 167.081399 + 0: The maximum resident set size (KB) = 1627696 -Test 044 control_iovr5_intel PASS +Test 047 control_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_130287/control_p8_intel -Checking test 045 control_p8_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2345,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 = 168.920752 - 0: The maximum resident set size (KB) = 1621096 + 0: The total amount of wall time = 166.653006 + 0: The maximum resident set size (KB) = 1636356 -Test 045 control_p8_intel PASS +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_130287/control_p8_ugwpv1_intel -Checking test 046 control_p8_ugwpv1_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2399,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.672538 - 0: The maximum resident set size (KB) = 1634096 + 0: The total amount of wall time = 159.822106 + 0: The maximum resident set size (KB) = 1625316 -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_130287/control_restart_p8_intel -Checking test 047 control_restart_p8_intel results .... +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 Comparing GFSFLX.GrbF24 .........OK @@ -2445,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.166872 - 0: The maximum resident set size (KB) = 893132 + 0: The total amount of wall time = 88.421193 + 0: The maximum resident set size (KB) = 884856 -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_130287/control_noqr_p8_intel -Checking test 048 control_noqr_p8_intel results .... +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 Comparing sfcf024.nc ............ALT CHECK......OK @@ -2499,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 = 163.844745 - 0: The maximum resident set size (KB) = 1622248 + 0: The total amount of wall time = 161.588427 + 0: The maximum resident set size (KB) = 1614208 -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_130287/control_restart_noqr_p8_intel -Checking test 049 control_restart_noqr_p8_intel results .... +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 Comparing GFSFLX.GrbF24 .........OK @@ -2545,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 = 87.834155 - 0: The maximum resident set size (KB) = 928656 + 0: The total amount of wall time = 85.687575 + 0: The maximum resident set size (KB) = 928800 -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_130287/control_decomp_p8_intel -Checking test 050 control_decomp_p8_intel results .... +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 Comparing atmf000.nc ............ALT CHECK......OK @@ -2595,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.713274 - 0: The maximum resident set size (KB) = 1619768 + 0: The total amount of wall time = 169.069100 + 0: The maximum resident set size (KB) = 1609088 -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_130287/control_2threads_p8_intel -Checking test 051 control_2threads_p8_intel results .... +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 Comparing atmf000.nc ............ALT CHECK......OK @@ -2645,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 = 173.834564 - 0: The maximum resident set size (KB) = 1718808 + 0: The total amount of wall time = 173.286482 + 0: The maximum resident set size (KB) = 1717068 -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_130287/control_p8_lndp_intel -Checking test 052 control_p8_lndp_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2671,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 = 299.673671 - 0: The maximum resident set size (KB) = 1626452 + 0: The total amount of wall time = 301.982160 + 0: The maximum resident set size (KB) = 1628952 -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_130287/control_p8_rrtmgp_intel -Checking test 053 control_p8_rrtmgp_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2725,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.653111 - 0: The maximum resident set size (KB) = 1689304 + 0: The total amount of wall time = 226.219477 + 0: The maximum resident set size (KB) = 1697144 -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_130287/control_p8_mynn_intel -Checking test 054 control_p8_mynn_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2779,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.510740 - 0: The maximum resident set size (KB) = 1640308 + 0: The total amount of wall time = 167.998252 + 0: The maximum resident set size (KB) = 1638332 -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_130287/merra2_thompson_intel -Checking test 055 merra2_thompson_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2833,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 = 196.388851 - 0: The maximum resident set size (KB) = 1642468 + 0: The total amount of wall time = 197.781493 + 0: The maximum resident set size (KB) = 1639152 -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_130287/regional_control_intel -Checking test 056 regional_control_intel results .... +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 Comparing phyf000.nc .........OK @@ -2851,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 = 295.910726 - 0: The maximum resident set size (KB) = 855920 + 0: The total amount of wall time = 298.605196 + 0: The maximum resident set size (KB) = 858860 -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_130287/regional_restart_intel -Checking test 057 regional_restart_intel results .... +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 = 156.419448 - 0: The maximum resident set size (KB) = 1019812 + 0: The total amount of wall time = 153.699340 + 0: The maximum resident set size (KB) = 1022024 -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_130287/regional_decomp_intel -Checking test 058 regional_decomp_intel results .... +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 Comparing phyf000.nc .........OK @@ -2883,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 = 314.003112 - 0: The maximum resident set size (KB) = 848680 + 0: The total amount of wall time = 322.722236 + 0: The maximum resident set size (KB) = 798760 -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_130287/regional_2threads_intel -Checking test 059 regional_2threads_intel results .... +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 Comparing phyf000.nc .........OK @@ -2901,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 = 209.882558 - 0: The maximum resident set size (KB) = 843772 + 0: The total amount of wall time = 207.882523 + 0: The maximum resident set size (KB) = 848340 -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_130287/regional_noquilt_intel -Checking test 060 regional_noquilt_intel results .... +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 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 = 290.300391 - 0: The maximum resident set size (KB) = 1360940 + 0: The total amount of wall time = 293.642892 + 0: The maximum resident set size (KB) = 1363152 -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_130287/regional_netcdf_parallel_intel -Checking test 061 regional_netcdf_parallel_intel results .... +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 = 290.846860 - 0: The maximum resident set size (KB) = 857060 + 0: The total amount of wall time = 292.897949 + 0: The maximum resident set size (KB) = 851496 -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_130287/regional_2dwrtdecomp_intel -Checking test 062 regional_2dwrtdecomp_intel results .... +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 Comparing phyf000.nc .........OK @@ -2948,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 = 293.557543 - 0: The maximum resident set size (KB) = 854828 + 0: The total amount of wall time = 294.655531 + 0: The maximum resident set size (KB) = 856984 -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_130287/regional_wofs_intel -Checking test 063 regional_wofs_intel results .... +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 Comparing phyf000.nc .........OK @@ -2966,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 = 381.220651 - 0: The maximum resident set size (KB) = 1920236 + 0: The total amount of wall time = 381.836940 + 0: The maximum resident set size (KB) = 1914396 -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_130287/rap_control_intel -Checking test 064 rap_control_intel results .... +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 Comparing sfcf024.nc .........OK @@ -3020,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 = 454.085526 - 0: The maximum resident set size (KB) = 1113544 + 0: The total amount of wall time = 449.534861 + 0: The maximum resident set size (KB) = 1109352 -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_130287/regional_spp_sppt_shum_skeb_intel -Checking test 065 regional_spp_sppt_shum_skeb_intel results .... +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 Comparing phyf000.nc .........OK @@ -3038,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 = 266.788605 - 0: The maximum resident set size (KB) = 1299836 + 0: The total amount of wall time = 267.970465 + 0: The maximum resident set size (KB) = 1299520 -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_130287/rap_decomp_intel -Checking test 066 rap_decomp_intel results .... +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 Comparing sfcf024.nc .........OK @@ -3092,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 = 473.717321 - 0: The maximum resident set size (KB) = 1030492 + 0: The total amount of wall time = 471.356981 + 0: The maximum resident set size (KB) = 1028172 -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_130287/rap_2threads_intel -Checking test 067 rap_2threads_intel results .... +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 Comparing sfcf024.nc .........OK @@ -3146,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 = 459.884743 - 0: The maximum resident set size (KB) = 1181904 + 0: The total amount of wall time = 462.530912 + 0: The maximum resident set size (KB) = 1177664 -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_130287/rap_restart_intel -Checking test 068 rap_restart_intel results .... +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 Comparing GFSFLX.GrbF24 .........OK @@ -3192,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 = 235.364955 - 0: The maximum resident set size (KB) = 1102668 + 0: The total amount of wall time = 230.611852 + 0: The maximum resident set size (KB) = 1098176 -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_130287/rap_sfcdiff_intel -Checking test 069 rap_sfcdiff_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3246,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 = 451.000154 - 0: The maximum resident set size (KB) = 1103216 + 0: The total amount of wall time = 449.336408 + 0: The maximum resident set size (KB) = 1105148 -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_130287/rap_sfcdiff_decomp_intel -Checking test 070 rap_sfcdiff_decomp_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3300,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 = 474.939873 - 0: The maximum resident set size (KB) = 1027108 + 0: The total amount of wall time = 475.248602 + 0: The maximum resident set size (KB) = 1032528 -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_130287/rap_sfcdiff_restart_intel -Checking test 071 rap_sfcdiff_restart_intel results .... +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 Comparing GFSFLX.GrbF12 .........OK @@ -3346,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 = 338.876149 - 0: The maximum resident set size (KB) = 1128660 + 0: The total amount of wall time = 337.270427 + 0: The maximum resident set size (KB) = 1124096 -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_130287/hrrr_control_intel -Checking test 072 hrrr_control_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3400,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 = 229.551199 - 0: The maximum resident set size (KB) = 1035968 + 0: The total amount of wall time = 228.723452 + 0: The maximum resident set size (KB) = 1033936 -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_130287/hrrr_control_decomp_intel -Checking test 073 hrrr_control_decomp_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3454,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 = 236.111997 - 0: The maximum resident set size (KB) = 1018940 + 0: The total amount of wall time = 235.045399 + 0: The maximum resident set size (KB) = 1017764 -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_130287/hrrr_control_2threads_intel -Checking test 074 hrrr_control_2threads_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3508,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 = 193.177583 - 0: The maximum resident set size (KB) = 1105044 + 0: The total amount of wall time = 192.711364 + 0: The maximum resident set size (KB) = 1113024 -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_130287/hrrr_control_restart_intel -Checking test 075 hrrr_control_restart_intel results .... +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 = 122.188649 - 0: The maximum resident set size (KB) = 1001228 + 0: The total amount of wall time = 120.524523 + 0: The maximum resident set size (KB) = 1002508 -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_130287/rrfs_v1beta_intel -Checking test 076 rrfs_v1beta_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3576,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 = 445.399173 - 0: The maximum resident set size (KB) = 1094208 + 0: The total amount of wall time = 442.992770 + 0: The maximum resident set size (KB) = 1094428 -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_130287/rrfs_v1nssl_intel -Checking test 077 rrfs_v1nssl_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3598,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 = 541.808240 - 0: The maximum resident set size (KB) = 1992764 + 0: The total amount of wall time = 544.420440 + 0: The maximum resident set size (KB) = 1991540 -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_130287/rrfs_v1nssl_nohailnoccn_intel -Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3620,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 = 519.873442 - 0: The maximum resident set size (KB) = 2075196 + 0: The total amount of wall time = 522.941028 + 0: The maximum resident set size (KB) = 2068592 -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_130287/control_csawmg_intel -Checking test 079 control_csawmg_intel results .... +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 Comparing atmf000.nc .........OK @@ -3638,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 = 342.690927 - 0: The maximum resident set size (KB) = 747464 + 0: The total amount of wall time = 338.495057 + 0: The maximum resident set size (KB) = 745636 -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_130287/control_csawmgt_intel -Checking test 080 control_csawmgt_intel results .... +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 Comparing atmf000.nc .........OK @@ -3656,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 = 334.363122 - 0: The maximum resident set size (KB) = 753708 + 0: The total amount of wall time = 339.017842 + 0: The maximum resident set size (KB) = 751852 -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_130287/control_ras_intel -Checking test 081 control_ras_intel results .... +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 Comparing atmf000.nc .........OK @@ -3674,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 = 190.799767 - 0: The maximum resident set size (KB) = 746144 + 0: The total amount of wall time = 186.385374 + 0: The maximum resident set size (KB) = 739420 -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_130287/control_wam_intel -Checking test 082 control_wam_intel results .... +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 = 113.154724 - 0: The maximum resident set size (KB) = 655656 + 0: The total amount of wall time = 112.874490 + 0: The maximum resident set size (KB) = 657604 -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_130287/control_p8_faster_intel -Checking test 083 control_p8_faster_intel results .... +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 Comparing sfcf024.nc .........OK @@ -3740,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 = 146.819635 - 0: The maximum resident set size (KB) = 1633020 + 0: The total amount of wall time = 145.650303 + 0: The maximum resident set size (KB) = 1624672 -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_130287/regional_control_faster_intel -Checking test 084 regional_control_faster_intel results .... +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 Comparing phyf000.nc .........OK @@ -3758,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 = 265.702780 - 0: The maximum resident set size (KB) = 852888 + 0: The total amount of wall time = 268.656966 + 0: The maximum resident set size (KB) = 856064 -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_130287/control_CubedSphereGrid_debug_intel -Checking test 085 control_CubedSphereGrid_debug_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -3792,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 = 154.096045 - 0: The maximum resident set size (KB) = 802388 + 0: The total amount of wall time = 154.508677 + 0: The maximum resident set size (KB) = 819144 -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_130287/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... +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.558103 - 0: The maximum resident set size (KB) = 812048 + 0: The total amount of wall time = 150.615534 + 0: The maximum resident set size (KB) = 810940 -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_130287/control_stochy_debug_intel -Checking test 087 control_stochy_debug_intel results .... +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 = 174.889861 - 0: The maximum resident set size (KB) = 814228 + 0: The total amount of wall time = 175.386628 + 0: The maximum resident set size (KB) = 816720 -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_130287/control_lndp_debug_intel -Checking test 088 control_lndp_debug_intel results .... +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 = 158.083731 - 0: The maximum resident set size (KB) = 809368 + 0: The total amount of wall time = 155.938039 + 0: The maximum resident set size (KB) = 814112 -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_130287/control_csawmg_debug_intel -Checking test 089 control_csawmg_debug_intel results .... +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 = 231.612663 - 0: The maximum resident set size (KB) = 864080 + 0: The total amount of wall time = 239.760893 + 0: The maximum resident set size (KB) = 863120 -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_130287/control_csawmgt_debug_intel -Checking test 090 control_csawmgt_debug_intel results .... +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 = 232.236599 - 0: The maximum resident set size (KB) = 864808 + 0: The total amount of wall time = 234.518689 + 0: The maximum resident set size (KB) = 868340 -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_130287/control_ras_debug_intel -Checking test 091 control_ras_debug_intel results .... +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.498510 - 0: The maximum resident set size (KB) = 819260 + 0: The total amount of wall time = 153.633282 + 0: The maximum resident set size (KB) = 827540 -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_130287/control_diag_debug_intel -Checking test 092 control_diag_debug_intel results .... +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 = 157.002175 - 0: The maximum resident set size (KB) = 871136 + 0: The total amount of wall time = 158.403334 + 0: The maximum resident set size (KB) = 874732 -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_130287/control_debug_p8_intel -Checking test 093 control_debug_p8_intel results .... +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 = 164.967154 - 0: The maximum resident set size (KB) = 1642904 + 0: The total amount of wall time = 166.578778 + 0: The maximum resident set size (KB) = 1641032 -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_130287/regional_debug_intel -Checking test 094 regional_debug_intel results .... +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 = 1021.783199 - 0: The maximum resident set size (KB) = 839180 + 0: The total amount of wall time = 1026.384500 + 0: The maximum resident set size (KB) = 847044 -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_130287/rap_control_debug_intel -Checking test 095 rap_control_debug_intel results .... +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 = 281.147648 - 0: The maximum resident set size (KB) = 1203396 + 0: The total amount of wall time = 288.006884 + 0: The maximum resident set size (KB) = 1197732 -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_130287/hrrr_control_debug_intel -Checking test 096 hrrr_control_debug_intel results .... +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 = 277.788901 - 0: The maximum resident set size (KB) = 1209180 + 0: The total amount of wall time = 276.176667 + 0: The maximum resident set size (KB) = 1193536 -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_130287/hrrr_gf_debug_intel -Checking test 097 hrrr_gf_debug_intel results .... +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 = 282.696216 - 0: The maximum resident set size (KB) = 1197664 + 0: The total amount of wall time = 284.641493 + 0: The maximum resident set size (KB) = 1198772 -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_130287/hrrr_c3_debug_intel -Checking test 098 hrrr_c3_debug_intel results .... +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 = 280.968771 - 0: The maximum resident set size (KB) = 1211756 + 0: The total amount of wall time = 284.407553 + 0: The maximum resident set size (KB) = 1196412 -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_130287/rap_unified_drag_suite_debug_intel -Checking test 099 rap_unified_drag_suite_debug_intel results .... +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 = 274.907968 - 0: The maximum resident set size (KB) = 1203004 + 0: The total amount of wall time = 283.961436 + 0: The maximum resident set size (KB) = 1203160 -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_130287/rap_diag_debug_intel -Checking test 100 rap_diag_debug_intel results .... +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 = 290.933635 - 0: The maximum resident set size (KB) = 1282016 + 0: The total amount of wall time = 299.696419 + 0: The maximum resident set size (KB) = 1292580 -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_130287/rap_cires_ugwp_debug_intel -Checking test 101 rap_cires_ugwp_debug_intel results .... +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 = 289.346788 - 0: The maximum resident set size (KB) = 1197648 + 0: The total amount of wall time = 286.910984 + 0: The maximum resident set size (KB) = 1194892 -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_130287/rap_unified_ugwp_debug_intel -Checking test 102 rap_unified_ugwp_debug_intel results .... +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 = 288.235478 - 0: The maximum resident set size (KB) = 1198240 + 0: The total amount of wall time = 294.791870 + 0: The maximum resident set size (KB) = 1204176 -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_130287/rap_lndp_debug_intel -Checking test 103 rap_lndp_debug_intel results .... +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 = 282.382389 - 0: The maximum resident set size (KB) = 1199640 + 0: The total amount of wall time = 286.041402 + 0: The maximum resident set size (KB) = 1200500 -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_130287/rap_progcld_thompson_debug_intel -Checking test 104 rap_progcld_thompson_debug_intel results .... +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 = 294.505042 - 0: The maximum resident set size (KB) = 1194040 + 0: The total amount of wall time = 285.759903 + 0: The maximum resident set size (KB) = 1201144 -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_130287/rap_noah_debug_intel -Checking test 105 rap_noah_debug_intel results .... +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.448532 - 0: The maximum resident set size (KB) = 1200692 + 0: The total amount of wall time = 278.171801 + 0: The maximum resident set size (KB) = 1201832 -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_130287/rap_sfcdiff_debug_intel -Checking test 106 rap_sfcdiff_debug_intel results .... +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 = 286.619073 - 0: The maximum resident set size (KB) = 1199716 + 0: The total amount of wall time = 283.712951 + 0: The maximum resident set size (KB) = 1206212 -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_130287/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +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 = 470.160161 - 0: The maximum resident set size (KB) = 1204428 + 0: The total amount of wall time = 467.521313 + 0: The maximum resident set size (KB) = 1201768 -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_130287/rrfs_v1beta_debug_intel -Checking test 108 rrfs_v1beta_debug_intel results .... +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 = 274.924647 - 0: The maximum resident set size (KB) = 1201272 + 0: The total amount of wall time = 279.860984 + 0: The maximum resident set size (KB) = 1197996 -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_130287/rap_clm_lake_debug_intel -Checking test 109 rap_clm_lake_debug_intel results .... +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 = 353.437041 - 0: The maximum resident set size (KB) = 1197848 + 0: The total amount of wall time = 365.356539 + 0: The maximum resident set size (KB) = 1206200 -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_130287/rap_flake_debug_intel -Checking test 110 rap_flake_debug_intel results .... +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 = 288.542239 - 0: The maximum resident set size (KB) = 1199720 + 0: The total amount of wall time = 283.637059 + 0: The maximum resident set size (KB) = 1209716 -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_130287/gnv1_c96_no_nest_debug_intel -Checking test 111 gnv1_c96_no_nest_debug_intel results .... +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 Comparing sfcf002.nc .........OK @@ -4190,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 = 482.673314 - 0: The maximum resident set size (KB) = 1204244 + 0: The total amount of wall time = 507.435300 + 0: The maximum resident set size (KB) = 1209368 -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_130287/control_wam_debug_intel -Checking test 112 control_wam_debug_intel results .... +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 = 287.656078 - 0: The maximum resident set size (KB) = 506116 + 0: The total amount of wall time = 286.998778 + 0: The maximum resident set size (KB) = 508124 -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_130287/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +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 Comparing phyf000.nc .........OK @@ -4220,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 = 263.167636 - 0: The maximum resident set size (KB) = 1160756 + 0: The total amount of wall time = 249.786685 + 0: The maximum resident set size (KB) = 1160748 -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_130287/rap_control_dyn32_phy32_intel -Checking test 114 rap_control_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4274,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 = 373.599118 - 0: The maximum resident set size (KB) = 1057580 + 0: The total amount of wall time = 370.396123 + 0: The maximum resident set size (KB) = 1047460 -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_130287/hrrr_control_dyn32_phy32_intel -Checking test 115 hrrr_control_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4328,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.006772 - 0: The maximum resident set size (KB) = 980708 + 0: The total amount of wall time = 191.177814 + 0: The maximum resident set size (KB) = 980132 -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_130287/rap_2threads_dyn32_phy32_intel -Checking test 116 rap_2threads_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4382,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 = 388.919667 - 0: The maximum resident set size (KB) = 1089616 + 0: The total amount of wall time = 388.721559 + 0: The maximum resident set size (KB) = 1088908 -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_130287/hrrr_control_2threads_dyn32_phy32_intel -Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4436,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 = 168.629407 - 0: The maximum resident set size (KB) = 959488 + 0: The total amount of wall time = 166.346744 + 0: The maximum resident set size (KB) = 965168 -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_130287/hrrr_control_decomp_dyn32_phy32_intel -Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4490,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 = 203.110785 - 0: The maximum resident set size (KB) = 935068 + 0: The total amount of wall time = 202.976446 + 0: The maximum resident set size (KB) = 922000 -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_130287/rap_restart_dyn32_phy32_intel -Checking test 119 rap_restart_dyn32_phy32_intel results .... +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 Comparing GFSFLX.GrbF12 .........OK @@ -4536,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 = 280.542771 - 0: The maximum resident set size (KB) = 1034252 + 0: The total amount of wall time = 277.441741 + 0: The maximum resident set size (KB) = 1033780 -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_130287/hrrr_control_restart_dyn32_phy32_intel -Checking test 120 hrrr_control_restart_dyn32_phy32_intel results .... +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 = 101.477821 - 0: The maximum resident set size (KB) = 930364 + 0: The total amount of wall time = 102.694901 + 0: The maximum resident set size (KB) = 926132 -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_130287/conus13km_control_intel -Checking test 121 conus13km_control_intel results .... +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 Comparing sfcf002.nc .........OK @@ -4573,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 = 120.131105 - 0: The maximum resident set size (KB) = 1202820 + 0: The total amount of wall time = 111.669185 + 0: The maximum resident set size (KB) = 1206672 -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_130287/conus13km_2threads_intel -Checking test 122 conus13km_2threads_intel results .... +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 = 50.749470 - 0: The maximum resident set size (KB) = 1127360 + 0: The total amount of wall time = 49.794920 + 0: The maximum resident set size (KB) = 1123420 -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_130287/conus13km_restart_mismatch_intel -Checking test 123 conus13km_restart_mismatch_intel results .... +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.828236 - 0: The maximum resident set size (KB) = 1113800 + 0: The total amount of wall time = 66.835969 + 0: The maximum resident set size (KB) = 1111040 -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_130287/rap_control_dyn64_phy32_intel -Checking test 124 rap_control_dyn64_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4653,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 = 245.522286 - 0: The maximum resident set size (KB) = 995876 + 0: The total amount of wall time = 242.892242 + 0: The maximum resident set size (KB) = 995236 -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_130287/rap_control_debug_dyn32_phy32_intel -Checking test 125 rap_control_debug_dyn32_phy32_intel results .... +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 = 275.466040 - 0: The maximum resident set size (KB) = 1080020 + 0: The total amount of wall time = 287.362087 + 0: The maximum resident set size (KB) = 1084220 -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_130287/hrrr_control_debug_dyn32_phy32_intel -Checking test 126 hrrr_control_debug_dyn32_phy32_intel results .... +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 = 272.630429 - 0: The maximum resident set size (KB) = 1077420 + 0: The total amount of wall time = 275.582939 + 0: The maximum resident set size (KB) = 1078580 -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_130287/conus13km_debug_intel -Checking test 127 conus13km_debug_intel results .... +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 Comparing atmf000.nc .........OK @@ -4702,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 = 860.992501 - 0: The maximum resident set size (KB) = 1233376 + 0: The total amount of wall time = 851.922184 + 0: The maximum resident set size (KB) = 1232524 -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_130287/conus13km_debug_qr_intel -Checking test 128 conus13km_debug_qr_intel results .... +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 Comparing atmf000.nc .........OK @@ -4723,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 = 849.433038 - 0: The maximum resident set size (KB) = 927816 + 0: The total amount of wall time = 860.171664 + 0: The maximum resident set size (KB) = 931792 -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_130287/conus13km_debug_2threads_intel -Checking test 129 conus13km_debug_2threads_intel results .... +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 = 475.825874 - 0: The maximum resident set size (KB) = 1151704 + 0: The total amount of wall time = 491.298743 + 0: The maximum resident set size (KB) = 1156532 -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_130287/conus13km_radar_tten_debug_intel -Checking test 130 conus13km_radar_tten_debug_intel results .... +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 = 828.351511 - 0: The maximum resident set size (KB) = 1300364 + 0: The total amount of wall time = 858.291234 + 0: The maximum resident set size (KB) = 1296916 -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_130287/rap_control_dyn64_phy32_debug_intel -Checking test 131 rap_control_dyn64_phy32_debug_intel results .... +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.699466 - 0: The maximum resident set size (KB) = 1122324 + 0: The total amount of wall time = 296.930398 + 0: The maximum resident set size (KB) = 1118848 -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_130287/hafs_regional_atm_intel -Checking test 132 hafs_regional_atm_intel results .... +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 = 317.697006 - 0: The maximum resident set size (KB) = 742684 + 0: The total amount of wall time = 315.061596 + 0: The maximum resident set size (KB) = 743576 -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_130287/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 133 hafs_regional_atm_thompson_gfdlsf_intel results .... +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.825404 - 0: The maximum resident set size (KB) = 1124180 + 0: The total amount of wall time = 339.937228 + 0: The maximum resident set size (KB) = 1118696 -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_130287/hafs_regional_atm_ocn_intel -Checking test 134 hafs_regional_atm_ocn_intel results .... +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 Comparing archv.2019_241_06.a .........OK @@ -4806,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 = 397.451448 - 0: The maximum resident set size (KB) = 834284 + 0: The total amount of wall time = 402.512774 + 0: The maximum resident set size (KB) = 831084 -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_130287/hafs_regional_atm_wav_intel -Checking test 135 hafs_regional_atm_wav_intel results .... +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 Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4822,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 = 768.176952 - 0: The maximum resident set size (KB) = 855244 + 0: The total amount of wall time = 750.312664 + 0: The maximum resident set size (KB) = 867120 -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_130287/hafs_regional_atm_ocn_wav_intel -Checking test 136 hafs_regional_atm_ocn_wav_intel results .... +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 Comparing archv.2019_241_06.a .........OK @@ -4840,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 = 862.470104 - 0: The maximum resident set size (KB) = 878144 + 0: The total amount of wall time = 864.678190 + 0: The maximum resident set size (KB) = 880400 -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_130287/hafs_regional_1nest_atm_intel -Checking test 137 hafs_regional_1nest_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4869,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 = 357.500197 - 0: The maximum resident set size (KB) = 501372 + 0: The total amount of wall time = 364.555775 + 0: The maximum resident set size (KB) = 501144 -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_130287/hafs_regional_telescopic_2nests_atm_intel -Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4885,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 = 436.818339 - 0: The maximum resident set size (KB) = 518724 + 0: The total amount of wall time = 433.599265 + 0: The maximum resident set size (KB) = 522460 -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_130287/hafs_global_1nest_atm_intel -Checking test 139 hafs_global_1nest_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4910,10 +5083,10 @@ Checking test 139 hafs_global_1nest_atm_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 .........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 + 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 @@ -4939,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 = 174.450384 - 0: The maximum resident set size (KB) = 375348 + 0: The total amount of wall time = 176.940254 + 0: The maximum resident set size (KB) = 375628 -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_130287/hafs_global_multiple_4nests_atm_intel -Checking test 140 hafs_global_multiple_4nests_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4983,11 +5156,11 @@ Checking test 140 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 ............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.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.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 @@ -5004,7 +5177,7 @@ Checking test 140 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 @@ -5028,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 = 460.478317 - 0: The maximum resident set size (KB) = 480004 + 0: The total amount of wall time = 455.372886 + 0: The maximum resident set size (KB) = 481676 -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_130287/hafs_regional_specified_moving_1nest_atm_intel -Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -5044,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 = 235.559939 - 0: The maximum resident set size (KB) = 528544 + 0: The total amount of wall time = 232.449456 + 0: The maximum resident set size (KB) = 526520 -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_130287/hafs_regional_storm_following_1nest_atm_intel -Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -5073,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 = 231.125616 - 0: The maximum resident set size (KB) = 529392 + 0: The total amount of wall time = 224.349682 + 0: The maximum resident set size (KB) = 530400 -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_130287/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -5089,97 +5262,115 @@ 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 = 303.334644 - 0: The maximum resident set size (KB) = 577380 + 0: The total amount of wall time = 302.352931 + 0: The maximum resident set size (KB) = 592444 -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_130287/hafs_global_storm_following_1nest_atm_intel -Checking test 144 hafs_global_storm_following_1nest_atm_intel results .... +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 = 77.122442 - 0: The maximum resident set size (KB) = 406252 + 0: The total amount of wall time = 72.272371 + 0: The maximum resident set size (KB) = 405728 -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_130287/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 +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 + 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 .........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 ............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 ............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 = 263.512672 - 0: The maximum resident set size (KB) = 809512 - -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_130287/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... + 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 + + +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 = 771.711102 - 0: The maximum resident set size (KB) = 576824 + 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-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 + 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 = 561.011573 + 0: The maximum resident set size (KB) = 676156 -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 = /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_130287/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -5189,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 = 554.494796 - 0: The maximum resident set size (KB) = 665480 + 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 -Test 147 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_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 + 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 -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_130287/hafs_regional_docn_intel -Checking test 148 hafs_regional_docn_intel results .... + 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-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 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 = 366.662674 - 0: The maximum resident set size (KB) = 828236 + 0: The total amount of wall time = 359.592440 + 0: The maximum resident set size (KB) = 829700 -Test 148 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_130287/hafs_regional_docn_oisst_intel -Checking test 149 hafs_regional_docn_oisst_intel results .... +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 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 = 370.233144 - 0: The maximum resident set size (KB) = 812580 + 0: The total amount of wall time = 364.605045 + 0: The maximum resident set size (KB) = 816460 -Test 149 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_130287/hafs_regional_datm_cdeps_intel -Checking test 150 hafs_regional_datm_cdeps_intel results .... +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 = 947.257962 - 0: The maximum resident set size (KB) = 1211772 + 0: The total amount of wall time = 949.407623 + 0: The maximum resident set size (KB) = 1174192 -Test 150 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_130287/datm_cdeps_control_cfsr_intel -Checking test 151 datm_cdeps_control_cfsr_intel results .... +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 = 148.065323 - 0: The maximum resident set size (KB) = 1136772 + 0: The total amount of wall time = 148.937060 + 0: The maximum resident set size (KB) = 1143984 -Test 151 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_130287/datm_cdeps_restart_cfsr_intel -Checking test 152 datm_cdeps_restart_cfsr_intel results .... +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 = 87.496119 - 0: The maximum resident set size (KB) = 1087856 + 0: The total amount of wall time = 87.960218 + 0: The maximum resident set size (KB) = 1084064 -Test 152 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_130287/datm_cdeps_control_gefs_intel -Checking test 153 datm_cdeps_control_gefs_intel results .... +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 = 140.313696 - 0: The maximum resident set size (KB) = 1012696 + 0: The total amount of wall time = 141.410578 + 0: The maximum resident set size (KB) = 1017344 -Test 153 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_130287/datm_cdeps_iau_gefs_intel -Checking test 154 datm_cdeps_iau_gefs_intel results .... +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 = 150.720800 - 0: The maximum resident set size (KB) = 1018848 + 0: The total amount of wall time = 144.367995 + 0: The maximum resident set size (KB) = 1015404 -Test 154 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_130287/datm_cdeps_stochy_gefs_intel -Checking test 155 datm_cdeps_stochy_gefs_intel results .... +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.554643 - 0: The maximum resident set size (KB) = 1001720 + 0: The total amount of wall time = 144.413319 + 0: The maximum resident set size (KB) = 1017156 -Test 155 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_130287/datm_cdeps_ciceC_cfsr_intel -Checking test 156 datm_cdeps_ciceC_cfsr_intel results .... +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 = 146.373403 - 0: The maximum resident set size (KB) = 1125560 + 0: The total amount of wall time = 147.465229 + 0: The maximum resident set size (KB) = 1133672 -Test 156 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_130287/datm_cdeps_bulk_cfsr_intel -Checking test 157 datm_cdeps_bulk_cfsr_intel results .... +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 = 152.603873 - 0: The maximum resident set size (KB) = 1112564 + 0: The total amount of wall time = 149.324559 + 0: The maximum resident set size (KB) = 1139856 -Test 157 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_130287/datm_cdeps_bulk_gefs_intel -Checking test 158 datm_cdeps_bulk_gefs_intel results .... +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 = 143.581704 - 0: The maximum resident set size (KB) = 1012944 + 0: The total amount of wall time = 143.527166 + 0: The maximum resident set size (KB) = 1014508 -Test 158 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_130287/datm_cdeps_mx025_cfsr_intel -Checking test 159 datm_cdeps_mx025_cfsr_intel results .... +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 Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5352,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 = 337.282365 - 0: The maximum resident set size (KB) = 1049804 + 0: The total amount of wall time = 336.875988 + 0: The maximum resident set size (KB) = 1055732 -Test 159 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_130287/datm_cdeps_mx025_gefs_intel -Checking test 160 datm_cdeps_mx025_gefs_intel results .... +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 Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5368,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 = 343.158958 - 0: The maximum resident set size (KB) = 1039496 + 0: The total amount of wall time = 336.898028 + 0: The maximum resident set size (KB) = 1032636 -Test 160 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_130287/datm_cdeps_multiple_files_cfsr_intel -Checking test 161 datm_cdeps_multiple_files_cfsr_intel results .... +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.704802 - 0: The maximum resident set size (KB) = 1135388 + 0: The total amount of wall time = 148.663450 + 0: The maximum resident set size (KB) = 1136220 -Test 161 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_130287/datm_cdeps_3072x1536_cfsr_intel -Checking test 162 datm_cdeps_3072x1536_cfsr_intel results .... +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 = 201.800242 - 0: The maximum resident set size (KB) = 2473800 + 0: The total amount of wall time = 200.998586 + 0: The maximum resident set size (KB) = 2449396 -Test 162 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_130287/datm_cdeps_gfs_intel -Checking test 163 datm_cdeps_gfs_intel results .... +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 = 207.914810 - 0: The maximum resident set size (KB) = 2422160 + 0: The total amount of wall time = 206.926367 + 0: The maximum resident set size (KB) = 2438476 -Test 163 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_130287/datm_cdeps_debug_cfsr_intel -Checking test 164 datm_cdeps_debug_cfsr_intel results .... +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 = 363.701975 - 0: The maximum resident set size (KB) = 1056848 + 0: The total amount of wall time = 353.393557 + 0: The maximum resident set size (KB) = 1060016 -Test 164 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_130287/datm_cdeps_control_cfsr_faster_intel -Checking test 165 datm_cdeps_control_cfsr_faster_intel results .... +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 = 145.452572 - 0: The maximum resident set size (KB) = 1117876 + 0: The total amount of wall time = 146.362175 + 0: The maximum resident set size (KB) = 1139996 -Test 165 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_130287/datm_cdeps_lnd_gswp3_intel -Checking test 166 datm_cdeps_lnd_gswp3_intel results .... +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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5447,15 +5655,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 = 37.281389 - 0: The maximum resident set size (KB) = 258628 + 0: The total amount of wall time = 37.706783 + 0: The maximum resident set size (KB) = 257584 -Test 166 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_130287/datm_cdeps_lnd_era5_intel -Checking test 167 datm_cdeps_lnd_era5_intel results .... +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 Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5463,15 +5671,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.690815 - 0: The maximum resident set size (KB) = 324764 + 0: The total amount of wall time = 37.621511 + 0: The maximum resident set size (KB) = 322924 -Test 167 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_130287/datm_cdeps_lnd_era5_rst_intel -Checking test 168 datm_cdeps_lnd_era5_rst_intel results .... +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 Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5479,15 +5687,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.651914 - 0: The maximum resident set size (KB) = 321924 + 0: The total amount of wall time = 21.266173 + 0: The maximum resident set size (KB) = 323604 -Test 168 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_130287/control_p8_atmlnd_sbs_intel -Checking test 169 control_p8_atmlnd_sbs_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -5575,15 +5783,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 = 244.155769 - 0: The maximum resident set size (KB) = 1609416 + 0: The total amount of wall time = 242.592537 + 0: The maximum resident set size (KB) = 1601000 -Test 169 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_130287/control_p8_atmlnd_intel -Checking test 170 control_p8_atmlnd_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -5671,15 +5879,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 = 243.878962 - 0: The maximum resident set size (KB) = 1593436 + 0: The total amount of wall time = 243.732255 + 0: The maximum resident set size (KB) = 1609892 -Test 170 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_130287/control_restart_p8_atmlnd_intel -Checking test 171 control_restart_p8_atmlnd_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -5699,15 +5907,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.108172 - 0: The maximum resident set size (KB) = 891560 + 0: The total amount of wall time = 124.208687 + 0: The maximum resident set size (KB) = 899620 -Test 171 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_130287/atmwav_control_noaero_p8_intel -Checking test 172 atmwav_control_noaero_p8_intel results .... +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 Comparing atmf000.nc .........OK @@ -5749,15 +5957,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 = 96.808614 - 0: The maximum resident set size (KB) = 1669144 + 0: The total amount of wall time = 93.985240 + 0: The maximum resident set size (KB) = 1662804 -Test 172 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_130287/control_atmwav_intel -Checking test 173 control_atmwav_intel results .... +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 Comparing atmf000.nc .........OK @@ -5800,15 +6008,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 = 88.067896 - 0: The maximum resident set size (KB) = 664172 + 0: The total amount of wall time = 90.326766 + 0: The maximum resident set size (KB) = 676552 -Test 173 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_130287/atmaero_control_p8_intel -Checking test 174 atmaero_control_p8_intel results .... +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 Comparing atmf000.nc .........OK @@ -5851,15 +6059,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 = 223.354195 - 0: The maximum resident set size (KB) = 3029248 + 0: The total amount of wall time = 226.970479 + 0: The maximum resident set size (KB) = 3022192 -Test 174 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_130287/atmaero_control_p8_rad_intel -Checking test 175 atmaero_control_p8_rad_intel results .... +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 Comparing atmf000.nc .........OK @@ -5902,15 +6110,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 = 277.126965 - 0: The maximum resident set size (KB) = 3094792 + 0: The total amount of wall time = 274.737253 + 0: The maximum resident set size (KB) = 3093372 -Test 175 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_130287/atmaero_control_p8_rad_micro_intel -Checking test 176 atmaero_control_p8_rad_micro_intel results .... +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 Comparing atmf000.nc .........OK @@ -5953,33 +6161,112 @@ 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 = 290.078609 - 0: The maximum resident set size (KB) = 3112084 + 0: The total amount of wall time = 293.098306 + 0: The maximum resident set size (KB) = 3110924 -Test 176 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_130287/regional_atmaq_debug_intel -Checking test 177 regional_atmaq_debug_intel results .... +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 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 .........OK Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1224.116384 - 0: The maximum resident set size (KB) = 4579524 + 0: The total amount of wall time = 1231.536326 + 0: The maximum resident set size (KB) = 4573004 + +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 177 regional_atmaq_debug_intel PASS +Test 001 gnv1_nested_intel PASS Tries: 2 REGRESSION TEST WAS SUCCESSFUL -Tue Jan 30 09:50:15 CST 2024 -Elapsed time: 01h:27m:05s. 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 ece489ff64..f15d9e134a 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,53 +1,54 @@ -Tue Jan 30 17:22:14 UTC 2024 +Thu Feb 8 12:11:45 UTC 2024 Start Regression test -Testing UFSWM Hash: ec848db8c3a6942ff39becb62b9742902b80ade3 +Testing UFSWM Hash: ae9936af3eff7c094a5425533092632507335184 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 13ed05982efc95c077efc3b9609688554e3a854c CMEPS-interface/CMEPS (cmeps_v0.4.1-2302-g13ed059) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 400e2129e147212ae2820368a8e0de6fd2492b36 FV3 (remotes/origin/nssl_mp_init) + 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 938 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 302 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 717 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 1040 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 1486 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 1041 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 797 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 1027 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 1040 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 588 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 605 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 668 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 718 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 1102 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 651 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 173 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 896 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 721 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 1526 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 983 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1296 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 978 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 721 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 967 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 909 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1833 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 254 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 680 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 947 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 819 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_112342/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 @@ -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 = 325.458562 -The maximum resident set size (KB) = 2975448 +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_112342/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 @@ -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 = 908.558791 -The maximum resident set size (KB) = 1589672 +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_112342/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 @@ -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 = 975.383546 -The maximum resident set size (KB) = 1704996 +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_112342/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 @@ -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 = 456.128963 -The maximum resident set size (KB) = 846728 +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_112342/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 @@ -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 = 1060.014816 -The maximum resident set size (KB) = 1576996 +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_112342/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 @@ -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 = 1406.994366 -The maximum resident set size (KB) = 1605936 +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_112342/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 @@ -498,15 +499,27 @@ 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 = 365.140811 -The maximum resident set size (KB) = 3003060 +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_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112342/cpld_restart_p8_intel -Checking test 008 cpld_restart_p8_intel results .... +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 + 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 @@ -558,15 +571,75 @@ 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.741701 -The maximum resident set size (KB) = 3060408 +The total amount of wall time = 364.742969 +The maximum resident set size (KB) = 3002400 -Test 008 cpld_restart_p8_intel PASS +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_112342/cpld_control_qr_p8_intel -Checking test 009 cpld_control_qr_p8_intel results .... +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 + 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 = 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-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 Comparing sfcf021.tile3.nc .........OK @@ -630,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 = 366.065626 -The maximum resident set size (KB) = 3027644 +The total amount of wall time = 366.866719 +The maximum resident set size (KB) = 3028492 -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_112342/cpld_restart_qr_p8_intel -Checking test 010 cpld_restart_qr_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -690,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 = 221.187105 -The maximum resident set size (KB) = 3082504 +The total amount of wall time = 220.874218 +The maximum resident set size (KB) = 3080068 -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_112342/cpld_2threads_p8_intel -Checking test 011 cpld_2threads_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -750,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 = 323.809772 -The maximum resident set size (KB) = 3313856 +The total amount of wall time = 325.012400 +The maximum resident set size (KB) = 3316164 -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_112342/cpld_decomp_p8_intel -Checking test 012 cpld_decomp_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -810,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 = 360.515372 -The maximum resident set size (KB) = 3004252 +The total amount of wall time = 357.907522 +The maximum resident set size (KB) = 2997104 -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_112342/cpld_mpi_p8_intel -Checking test 013 cpld_mpi_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -870,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 = 305.699598 -The maximum resident set size (KB) = 2924536 +The total amount of wall time = 303.652377 +The maximum resident set size (KB) = 2923216 -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_112342/cpld_control_ciceC_p8_intel -Checking test 014 cpld_control_ciceC_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -942,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 = 365.556722 -The maximum resident set size (KB) = 3005496 +The total amount of wall time = 364.033549 +The maximum resident set size (KB) = 3004436 -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_112342/cpld_bmark_p8_intel -Checking test 015 cpld_bmark_p8_intel results .... +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 Comparing GFSFLX.GrbF06 .........OK @@ -997,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 = 753.518842 -The maximum resident set size (KB) = 3946228 +The total amount of wall time = 756.259365 +The maximum resident set size (KB) = 3952964 -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_112342/cpld_restart_bmark_p8_intel -Checking test 016 cpld_restart_bmark_p8_intel results .... +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 Comparing GFSFLX.GrbF06 .........OK @@ -1052,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 = 533.329821 -The maximum resident set size (KB) = 4249740 +The total amount of wall time = 541.490510 +The maximum resident set size (KB) = 4256924 -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_112342/cpld_s2sa_p8_intel -Checking test 017 cpld_s2sa_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -1110,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 = 346.383874 -The maximum resident set size (KB) = 2971132 +The total amount of wall time = 343.894288 +The maximum resident set size (KB) = 2967508 -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_112342/cpld_control_noaero_p8_intel -Checking test 018 cpld_control_noaero_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1181,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 = 270.624581 -The maximum resident set size (KB) = 1587956 +The total amount of wall time = 277.108455 +The maximum resident set size (KB) = 1584664 -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_112342/cpld_control_nowave_noaero_p8_intel -Checking test 019 cpld_control_nowave_noaero_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1250,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 = 275.267890 -The maximum resident set size (KB) = 1633484 +The total amount of wall time = 282.769568 +The maximum resident set size (KB) = 1636840 -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_112342/cpld_control_noaero_p8_agrid_intel -Checking test 020 cpld_control_noaero_p8_agrid_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1319,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 = 276.622747 -The maximum resident set size (KB) = 1634064 +The total amount of wall time = 274.684919 +The maximum resident set size (KB) = 1634592 -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_112342/cpld_control_c48_intel -Checking test 021 cpld_control_c48_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -1376,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 = 407.663652 -The maximum resident set size (KB) = 2648612 +The total amount of wall time = 408.146202 +The maximum resident set size (KB) = 2650456 -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_112342/cpld_control_p8_faster_intel -Checking test 022 cpld_control_p8_faster_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1448,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 = 359.423559 -The maximum resident set size (KB) = 3005160 +The total amount of wall time = 358.005204 +The maximum resident set size (KB) = 3003900 -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_112342/cpld_control_pdlib_p8_intel -Checking test 023 cpld_control_pdlib_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1519,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 = 922.550125 -The maximum resident set size (KB) = 1599412 +The total amount of wall time = 929.239085 +The maximum resident set size (KB) = 1597568 -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_112342/cpld_restart_pdlib_p8_intel -Checking test 024 cpld_restart_pdlib_p8_intel results .... +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 Comparing sfcf024.tile3.nc .........OK @@ -1578,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 = 458.043403 -The maximum resident set size (KB) = 899088 +The total amount of wall time = 469.141027 +The maximum resident set size (KB) = 898064 -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_112342/cpld_mpi_pdlib_p8_intel -Checking test 025 cpld_mpi_pdlib_p8_intel results .... +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 Comparing sfcf021.tile3.nc .........OK @@ -1649,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 = 1072.348873 -The maximum resident set size (KB) = 1576464 +The total amount of wall time = 1077.611155 +The maximum resident set size (KB) = 1577576 -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_112342/cpld_debug_pdlib_p8_intel -Checking test 026 cpld_debug_pdlib_p8_intel results .... +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 Comparing sfcf003.tile3.nc .........OK @@ -1708,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 = 1493.913039 -The maximum resident set size (KB) = 1607856 +The total amount of wall time = 1489.582749 +The maximum resident set size (KB) = 1619680 -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_112342/control_flake_intel -Checking test 027 control_flake_intel results .... +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 Comparing atmf000.nc .........OK @@ -1726,15 +1799,15 @@ Checking test 027 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 213.644378 -The maximum resident set size (KB) = 574272 +The total amount of wall time = 215.004933 +The maximum resident set size (KB) = 571512 -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_112342/control_CubedSphereGrid_intel -Checking test 028 control_CubedSphereGrid_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -1760,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 = 131.371858 -The maximum resident set size (KB) = 523736 +The total amount of wall time = 133.747232 +The maximum resident set size (KB) = 521376 -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_112342/control_CubedSphereGrid_parallel_intel -Checking test 029 control_CubedSphereGrid_parallel_intel results .... +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 Comparing atmf000.nc .........OK @@ -1782,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 = 138.638067 -The maximum resident set size (KB) = 533688 +The total amount of wall time = 139.499754 +The maximum resident set size (KB) = 527656 -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_112342/control_latlon_intel -Checking test 030 control_latlon_intel results .... +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 Comparing atmf000.nc .........OK @@ -1800,15 +1873,15 @@ Checking test 030 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.325260 -The maximum resident set size (KB) = 526628 +The total amount of wall time = 134.980258 +The maximum resident set size (KB) = 523128 -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_112342/control_wrtGauss_netcdf_parallel_intel -Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... +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 Comparing atmf000.nc .........OK @@ -1818,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 = 134.954478 -The maximum resident set size (KB) = 522392 +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-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 + 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.632449 +The maximum resident set size (KB) = 715436 -Test 031 control_wrtGauss_netcdf_parallel_intel PASS +Test 033 control_c48_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_112342/control_c48_intel -Checking test 032 control_c48_intel results .... +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 Comparing atmf000.nc .........OK @@ -1864,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 = 330.806292 -The maximum resident set size (KB) = 718124 +The total amount of wall time = 329.697470 +The maximum resident set size (KB) = 714940 -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_112342/control_c192_intel -Checking test 033 control_c192_intel results .... +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 Comparing atmf000.nc .........OK @@ -1882,15 +2001,15 @@ Checking test 033 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 528.082507 -The maximum resident set size (KB) = 640316 +The total amount of wall time = 531.463784 +The maximum resident set size (KB) = 637944 -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_112342/control_c384_intel -Checking test 034 control_c384_intel results .... +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 Comparing atmf000.nc .........OK @@ -1900,15 +2019,15 @@ Checking test 034 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 587.637271 -The maximum resident set size (KB) = 952324 +The total amount of wall time = 585.159398 +The maximum resident set size (KB) = 952192 -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_112342/control_c384gdas_intel -Checking test 035 control_c384gdas_intel results .... +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 Comparing atmf000.nc .........OK @@ -1950,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 = 515.576232 -The maximum resident set size (KB) = 1092076 +The total amount of wall time = 516.438040 +The maximum resident set size (KB) = 1094076 -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_112342/control_stochy_intel -Checking test 036 control_stochy_intel results .... +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 Comparing atmf000.nc .........OK @@ -1968,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.875233 -The maximum resident set size (KB) = 531936 +The total amount of wall time = 88.311892 +The maximum resident set size (KB) = 531904 -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_112342/control_stochy_restart_intel -Checking test 037 control_stochy_restart_intel results .... +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 = 51.762279 -The maximum resident set size (KB) = 330956 +The total amount of wall time = 50.558205 +The maximum resident set size (KB) = 337064 -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_112342/control_lndp_intel -Checking test 038 control_lndp_intel results .... +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 Comparing atmf000.nc .........OK @@ -2000,15 +2119,15 @@ Checking test 038 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 84.140407 -The maximum resident set size (KB) = 529316 +The total amount of wall time = 83.674427 +The maximum resident set size (KB) = 528260 -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_112342/control_iovr4_intel -Checking test 039 control_iovr4_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2022,15 +2141,15 @@ Checking test 039 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.138214 -The maximum resident set size (KB) = 522148 +The total amount of wall time = 133.689079 +The maximum resident set size (KB) = 524600 -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_112342/control_iovr5_intel -Checking test 040 control_iovr5_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2044,15 +2163,15 @@ Checking test 040 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.137173 -The maximum resident set size (KB) = 526372 +The total amount of wall time = 134.159394 +The maximum resident set size (KB) = 522968 -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_112342/control_p8_intel -Checking test 041 control_p8_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2098,15 +2217,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 = 164.787466 -The maximum resident set size (KB) = 1499272 +The total amount of wall time = 163.142716 +The maximum resident set size (KB) = 1498532 -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_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112342/control_p8_ugwpv1_intel -Checking test 042 control_p8_ugwpv1_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2152,18 +2271,26 @@ 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.191269 -The maximum resident set size (KB) = 1514240 +The total amount of wall time = 163.898079 +The maximum resident set size (KB) = 1495984 -Test 042 control_p8_ugwpv1_intel PASS +Test 044 control_p8.v2.sfc_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_112342/control_restart_p8_intel -Checking test 043 control_restart_p8_intel results .... +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 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 @@ -2198,15 +2325,61 @@ 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 = 93.990332 -The maximum resident set size (KB) = 693764 +The total amount of wall time = 160.150591 +The maximum resident set size (KB) = 1505432 -Test 043 control_restart_p8_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_112342/control_noqr_p8_intel -Checking test 044 control_noqr_p8_intel results .... +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 + 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.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-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 Comparing sfcf024.nc .........OK @@ -2252,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 = 164.485127 -The maximum resident set size (KB) = 1487408 +The total amount of wall time = 163.307225 +The maximum resident set size (KB) = 1488620 -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_112342/control_restart_noqr_p8_intel -Checking test 045 control_restart_noqr_p8_intel results .... +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 Comparing GFSFLX.GrbF24 .........OK @@ -2298,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 = 90.951283 -The maximum resident set size (KB) = 696412 +The total amount of wall time = 89.466469 +The maximum resident set size (KB) = 692724 -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_112342/control_decomp_p8_intel -Checking test 046 control_decomp_p8_intel results .... +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 Comparing atmf000.nc .........OK @@ -2348,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 = 167.791220 -The maximum resident set size (KB) = 1498992 +The total amount of wall time = 168.177930 +The maximum resident set size (KB) = 1498708 -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_112342/control_2threads_p8_intel -Checking test 047 control_2threads_p8_intel results .... +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 Comparing atmf000.nc .........OK @@ -2398,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 = 142.683601 -The maximum resident set size (KB) = 1591884 +The total amount of wall time = 146.539529 +The maximum resident set size (KB) = 1597580 -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_112342/control_p8_lndp_intel -Checking test 048 control_p8_lndp_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2424,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 = 293.291800 -The maximum resident set size (KB) = 1498080 +The total amount of wall time = 294.833818 +The maximum resident set size (KB) = 1505424 -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_112342/control_p8_rrtmgp_intel -Checking test 049 control_p8_rrtmgp_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2478,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 = 223.686273 -The maximum resident set size (KB) = 1557260 +The total amount of wall time = 226.376626 +The maximum resident set size (KB) = 1553972 -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_112342/control_p8_mynn_intel -Checking test 050 control_p8_mynn_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2532,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 = 169.294987 -The maximum resident set size (KB) = 1511872 +The total amount of wall time = 169.877046 +The maximum resident set size (KB) = 1512596 -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_112342/merra2_thompson_intel -Checking test 051 merra2_thompson_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2586,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 = 201.204296 -The maximum resident set size (KB) = 1513668 +The total amount of wall time = 203.845086 +The maximum resident set size (KB) = 1518516 -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_112342/regional_control_intel -Checking test 052 regional_control_intel results .... +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 Comparing phyf000.nc .........OK @@ -2604,29 +2777,29 @@ Checking test 052 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 282.710475 -The maximum resident set size (KB) = 606356 +The total amount of wall time = 291.454854 +The maximum resident set size (KB) = 605920 -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_112342/regional_restart_intel -Checking test 053 regional_restart_intel results .... +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 = 157.771388 -The maximum resident set size (KB) = 781632 +The total amount of wall time = 155.249031 +The maximum resident set size (KB) = 777340 -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_112342/regional_decomp_intel -Checking test 054 regional_decomp_intel results .... +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 Comparing phyf000.nc .........OK @@ -2636,15 +2809,15 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 300.278407 -The maximum resident set size (KB) = 606620 +The total amount of wall time = 303.047275 +The maximum resident set size (KB) = 605796 -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_112342/regional_2threads_intel -Checking test 055 regional_2threads_intel results .... +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 Comparing phyf000.nc .........OK @@ -2654,44 +2827,44 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 170.284727 -The maximum resident set size (KB) = 663924 +The total amount of wall time = 172.278279 +The maximum resident set size (KB) = 668288 -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_112342/regional_noquilt_intel -Checking test 056 regional_noquilt_intel results .... +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 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.585237 -The maximum resident set size (KB) = 1142656 +The total amount of wall time = 280.805624 +The maximum resident set size (KB) = 1138164 -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_112342/regional_netcdf_parallel_intel -Checking test 057 regional_netcdf_parallel_intel results .... +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 = 281.857561 -The maximum resident set size (KB) = 608168 +The total amount of wall time = 285.101281 +The maximum resident set size (KB) = 607028 -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_112342/regional_2dwrtdecomp_intel -Checking test 058 regional_2dwrtdecomp_intel results .... +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 Comparing phyf000.nc .........OK @@ -2701,15 +2874,15 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 283.647563 -The maximum resident set size (KB) = 607124 +The total amount of wall time = 289.825775 +The maximum resident set size (KB) = 608984 -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_112342/regional_wofs_intel -Checking test 059 regional_wofs_intel results .... +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 Comparing phyf000.nc .........OK @@ -2719,15 +2892,15 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 372.574609 -The maximum resident set size (KB) = 1583580 +The total amount of wall time = 372.335239 +The maximum resident set size (KB) = 1579964 -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_112342/rap_control_intel -Checking test 060 rap_control_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2773,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.862473 -The maximum resident set size (KB) = 918940 +The total amount of wall time = 408.266116 +The maximum resident set size (KB) = 915576 -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_112342/regional_spp_sppt_shum_skeb_intel -Checking test 061 regional_spp_sppt_shum_skeb_intel results .... +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 Comparing phyf000.nc .........OK @@ -2791,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 = 240.910565 -The maximum resident set size (KB) = 1092796 +The total amount of wall time = 240.781829 +The maximum resident set size (KB) = 1090784 -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_112342/rap_decomp_intel -Checking test 062 rap_decomp_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2845,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.309508 -The maximum resident set size (KB) = 916132 +The total amount of wall time = 421.490321 +The maximum resident set size (KB) = 914780 -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_112342/rap_2threads_intel -Checking test 063 rap_2threads_intel results .... +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 Comparing sfcf024.nc .........OK @@ -2899,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 = 399.800583 -The maximum resident set size (KB) = 1004468 +The total amount of wall time = 370.198457 +The maximum resident set size (KB) = 1006440 -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_112342/rap_restart_intel -Checking test 064 rap_restart_intel results .... +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 Comparing GFSFLX.GrbF24 .........OK @@ -2945,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 = 207.264328 -The maximum resident set size (KB) = 787828 +The total amount of wall time = 212.308251 +The maximum resident set size (KB) = 783116 -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_112342/rap_sfcdiff_intel -Checking test 065 rap_sfcdiff_intel results .... +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 Comparing sfcf012.nc .........OK @@ -2999,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 = 405.554717 -The maximum resident set size (KB) = 911376 +The total amount of wall time = 407.502892 +The maximum resident set size (KB) = 911192 -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_112342/rap_sfcdiff_decomp_intel -Checking test 066 rap_sfcdiff_decomp_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3053,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 = 423.083804 -The maximum resident set size (KB) = 913556 +The total amount of wall time = 423.159391 +The maximum resident set size (KB) = 912000 -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_112342/rap_sfcdiff_restart_intel -Checking test 067 rap_sfcdiff_restart_intel results .... +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 Comparing GFSFLX.GrbF12 .........OK @@ -3099,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 = 305.592979 -The maximum resident set size (KB) = 785676 +The total amount of wall time = 302.415086 +The maximum resident set size (KB) = 782380 -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_112342/hrrr_control_intel -Checking test 068 hrrr_control_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3153,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 = 207.920767 -The maximum resident set size (KB) = 910680 +The total amount of wall time = 210.357208 +The maximum resident set size (KB) = 906692 -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_112342/hrrr_control_decomp_intel -Checking test 069 hrrr_control_decomp_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3207,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.469629 -The maximum resident set size (KB) = 906624 +The total amount of wall time = 212.480979 +The maximum resident set size (KB) = 909184 -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_112342/hrrr_control_2threads_intel -Checking test 070 hrrr_control_2threads_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3261,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.939288 -The maximum resident set size (KB) = 993336 +The total amount of wall time = 187.693284 +The maximum resident set size (KB) = 997904 -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_112342/hrrr_control_restart_intel -Checking test 071 hrrr_control_restart_intel results .... +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 = 108.947094 -The maximum resident set size (KB) = 741600 +The total amount of wall time = 110.324867 +The maximum resident set size (KB) = 743852 -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_112342/rrfs_v1beta_intel -Checking test 072 rrfs_v1beta_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3329,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 = 397.759074 -The maximum resident set size (KB) = 909956 +The total amount of wall time = 400.553044 +The maximum resident set size (KB) = 909704 -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_112342/rrfs_v1nssl_intel -Checking test 073 rrfs_v1nssl_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3351,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.811057 -The maximum resident set size (KB) = 1876072 +The total amount of wall time = 488.987399 +The maximum resident set size (KB) = 1872972 -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_112342/rrfs_v1nssl_nohailnoccn_intel -Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... +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 Comparing sfcf012.nc .........OK @@ -3373,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 = 473.480533 -The maximum resident set size (KB) = 1857780 +The total amount of wall time = 472.407966 +The maximum resident set size (KB) = 1859360 -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_112342/control_csawmg_intel -Checking test 075 control_csawmg_intel results .... +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 Comparing atmf000.nc .........OK @@ -3391,15 +3564,15 @@ Checking test 075 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 339.519608 -The maximum resident set size (KB) = 598160 +The total amount of wall time = 336.156818 +The maximum resident set size (KB) = 602952 -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_112342/control_csawmgt_intel -Checking test 076 control_csawmgt_intel results .... +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 Comparing atmf000.nc .........OK @@ -3409,15 +3582,15 @@ Checking test 076 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 336.254043 -The maximum resident set size (KB) = 593768 +The total amount of wall time = 332.533486 +The maximum resident set size (KB) = 594364 -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_112342/control_ras_intel -Checking test 077 control_ras_intel results .... +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 Comparing atmf000.nc .........OK @@ -3427,27 +3600,27 @@ Checking test 077 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 188.154786 -The maximum resident set size (KB) = 562280 +The total amount of wall time = 184.950621 +The maximum resident set size (KB) = 559432 -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_112342/control_wam_intel -Checking test 078 control_wam_intel results .... +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 = 120.594707 -The maximum resident set size (KB) = 271412 +The total amount of wall time = 119.338500 +The maximum resident set size (KB) = 272840 -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_112342/control_p8_faster_intel -Checking test 079 control_p8_faster_intel results .... +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 Comparing sfcf024.nc .........OK @@ -3493,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.108751 -The maximum resident set size (KB) = 1509644 +The total amount of wall time = 157.937879 +The maximum resident set size (KB) = 1503168 -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_112342/regional_control_faster_intel -Checking test 080 regional_control_faster_intel results .... +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 Comparing phyf000.nc .........OK @@ -3511,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 = 279.463070 -The maximum resident set size (KB) = 610236 +The total amount of wall time = 282.310219 +The maximum resident set size (KB) = 609908 -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_112342/control_CubedSphereGrid_debug_intel -Checking test 081 control_CubedSphereGrid_debug_intel results .... +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 Comparing sfcf000.tile3.nc .........OK @@ -3545,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 = 161.470487 -The maximum resident set size (KB) = 684144 +The total amount of wall time = 163.533173 +The maximum resident set size (KB) = 684512 -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_112342/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results .... +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 = 157.090729 -The maximum resident set size (KB) = 683732 +The total amount of wall time = 160.836127 +The maximum resident set size (KB) = 693188 -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_112342/control_stochy_debug_intel -Checking test 083 control_stochy_debug_intel results .... +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 = 178.253400 -The maximum resident set size (KB) = 687964 +The total amount of wall time = 180.703328 +The maximum resident set size (KB) = 693420 -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_112342/control_lndp_debug_intel -Checking test 084 control_lndp_debug_intel results .... +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 = 161.009482 -The maximum resident set size (KB) = 692592 +The total amount of wall time = 162.417812 +The maximum resident set size (KB) = 692092 -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_112342/control_csawmg_debug_intel -Checking test 085 control_csawmg_debug_intel results .... +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 = 250.623144 -The maximum resident set size (KB) = 730264 +The total amount of wall time = 257.539294 +The maximum resident set size (KB) = 732228 -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_112342/control_csawmgt_debug_intel -Checking test 086 control_csawmgt_debug_intel results .... +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 = 248.215758 -The maximum resident set size (KB) = 730236 +The total amount of wall time = 253.758498 +The maximum resident set size (KB) = 731240 -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_112342/control_ras_debug_intel -Checking test 087 control_ras_debug_intel results .... +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.714111 -The maximum resident set size (KB) = 698684 +The total amount of wall time = 167.140986 +The maximum resident set size (KB) = 703804 -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_112342/control_diag_debug_intel -Checking test 088 control_diag_debug_intel results .... +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 = 162.754455 -The maximum resident set size (KB) = 743968 +The total amount of wall time = 166.628987 +The maximum resident set size (KB) = 746256 -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_112342/control_debug_p8_intel -Checking test 089 control_debug_p8_intel results .... +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 = 167.062496 -The maximum resident set size (KB) = 1517000 +The total amount of wall time = 169.847887 +The maximum resident set size (KB) = 1521184 -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_112342/regional_debug_intel -Checking test 090 regional_debug_intel results .... +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 = 1047.073783 -The maximum resident set size (KB) = 629728 +The total amount of wall time = 1057.576212 +The maximum resident set size (KB) = 632792 -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_112342/rap_control_debug_intel -Checking test 091 rap_control_debug_intel results .... +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 = 300.082481 -The maximum resident set size (KB) = 1074688 +The total amount of wall time = 304.227471 +The maximum resident set size (KB) = 1077604 -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_112342/hrrr_control_debug_intel -Checking test 092 hrrr_control_debug_intel results .... +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 = 291.670033 -The maximum resident set size (KB) = 1073212 +The total amount of wall time = 298.599585 +The maximum resident set size (KB) = 1069440 -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_112342/hrrr_gf_debug_intel -Checking test 093 hrrr_gf_debug_intel results .... +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 = 297.493693 -The maximum resident set size (KB) = 1076636 +The total amount of wall time = 304.371168 +The maximum resident set size (KB) = 1071732 -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_112342/hrrr_c3_debug_intel -Checking test 094 hrrr_c3_debug_intel results .... +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 = 299.952163 -The maximum resident set size (KB) = 1073052 +The total amount of wall time = 305.726062 +The maximum resident set size (KB) = 1074888 -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_112342/rap_unified_drag_suite_debug_intel -Checking test 095 rap_unified_drag_suite_debug_intel results .... +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 = 302.533515 -The maximum resident set size (KB) = 1072712 +The total amount of wall time = 303.275215 +The maximum resident set size (KB) = 1080748 -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_112342/rap_diag_debug_intel -Checking test 096 rap_diag_debug_intel results .... +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 = 310.734846 -The maximum resident set size (KB) = 1157320 +The total amount of wall time = 314.584640 +The maximum resident set size (KB) = 1155332 -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_112342/rap_cires_ugwp_debug_intel -Checking test 097 rap_cires_ugwp_debug_intel results .... +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 = 303.522963 -The maximum resident set size (KB) = 1074544 +The total amount of wall time = 307.750164 +The maximum resident set size (KB) = 1073920 -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_112342/rap_unified_ugwp_debug_intel -Checking test 098 rap_unified_ugwp_debug_intel results .... +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 = 304.340587 -The maximum resident set size (KB) = 1074168 +The total amount of wall time = 308.818130 +The maximum resident set size (KB) = 1076280 -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_112342/rap_lndp_debug_intel -Checking test 099 rap_lndp_debug_intel results .... +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 = 300.163736 -The maximum resident set size (KB) = 1074484 +The total amount of wall time = 303.969573 +The maximum resident set size (KB) = 1078336 -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_112342/rap_progcld_thompson_debug_intel -Checking test 100 rap_progcld_thompson_debug_intel results .... +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 = 298.161283 -The maximum resident set size (KB) = 1074380 +The total amount of wall time = 304.074241 +The maximum resident set size (KB) = 1073032 -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_112342/rap_noah_debug_intel -Checking test 101 rap_noah_debug_intel results .... +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 = 291.695139 -The maximum resident set size (KB) = 1072740 +The total amount of wall time = 297.279825 +The maximum resident set size (KB) = 1072620 -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_112342/rap_sfcdiff_debug_intel -Checking test 102 rap_sfcdiff_debug_intel results .... +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 = 298.757351 -The maximum resident set size (KB) = 1074556 +The total amount of wall time = 301.181075 +The maximum resident set size (KB) = 1071460 -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_112342/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +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 = 490.929878 -The maximum resident set size (KB) = 1072284 +The total amount of wall time = 491.996978 +The maximum resident set size (KB) = 1070932 -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_112342/rrfs_v1beta_debug_intel -Checking test 104 rrfs_v1beta_debug_intel results .... +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 = 296.345304 -The maximum resident set size (KB) = 1066616 +The total amount of wall time = 297.225742 +The maximum resident set size (KB) = 1068100 -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_112342/rap_clm_lake_debug_intel -Checking test 105 rap_clm_lake_debug_intel results .... +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 = 369.545884 -The maximum resident set size (KB) = 1077924 +The total amount of wall time = 351.399253 +The maximum resident set size (KB) = 1075296 -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_112342/rap_flake_debug_intel -Checking test 106 rap_flake_debug_intel results .... +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 = 298.026366 -The maximum resident set size (KB) = 1073424 +The total amount of wall time = 301.904245 +The maximum resident set size (KB) = 1076368 -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_112342/gnv1_c96_no_nest_debug_intel -Checking test 107 gnv1_c96_no_nest_debug_intel results .... +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 Comparing sfcf002.nc .........OK @@ -3943,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 = 523.546909 -The maximum resident set size (KB) = 1077620 +The total amount of wall time = 525.187740 +The maximum resident set size (KB) = 1079352 -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_112342/control_wam_debug_intel -Checking test 108 control_wam_debug_intel results .... +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 = 301.528494 -The maximum resident set size (KB) = 299456 +The total amount of wall time = 295.899096 +The maximum resident set size (KB) = 296816 -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_112342/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +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 Comparing phyf000.nc .........OK @@ -3973,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.067143 -The maximum resident set size (KB) = 952008 +The total amount of wall time = 227.670595 +The maximum resident set size (KB) = 955232 -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_112342/rap_control_dyn32_phy32_intel -Checking test 110 rap_control_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4027,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 = 335.300520 -The maximum resident set size (KB) = 788580 +The total amount of wall time = 335.725423 +The maximum resident set size (KB) = 789816 -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_112342/hrrr_control_dyn32_phy32_intel -Checking test 111 hrrr_control_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4081,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 = 175.507434 -The maximum resident set size (KB) = 787508 +The total amount of wall time = 179.182742 +The maximum resident set size (KB) = 787528 -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_112342/rap_2threads_dyn32_phy32_intel -Checking test 112 rap_2threads_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4135,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 = 308.717628 -The maximum resident set size (KB) = 854424 +The total amount of wall time = 305.603189 +The maximum resident set size (KB) = 851512 -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_112342/hrrr_control_2threads_dyn32_phy32_intel -Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4189,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 = 161.464628 -The maximum resident set size (KB) = 840052 +The total amount of wall time = 159.646100 +The maximum resident set size (KB) = 841524 -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_112342/hrrr_control_decomp_dyn32_phy32_intel -Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4243,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.563365 -The maximum resident set size (KB) = 788536 +The total amount of wall time = 184.542179 +The maximum resident set size (KB) = 788688 -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_112342/rap_restart_dyn32_phy32_intel -Checking test 115 rap_restart_dyn32_phy32_intel results .... +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 Comparing GFSFLX.GrbF12 .........OK @@ -4289,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 = 250.005628 -The maximum resident set size (KB) = 687768 +The total amount of wall time = 249.992297 +The maximum resident set size (KB) = 688444 -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_112342/hrrr_control_restart_dyn32_phy32_intel -Checking test 116 hrrr_control_restart_dyn32_phy32_intel results .... +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 = 93.757037 -The maximum resident set size (KB) = 665244 +The total amount of wall time = 93.291122 +The maximum resident set size (KB) = 670088 -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_112342/conus13km_control_intel -Checking test 117 conus13km_control_intel results .... +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 Comparing sfcf002.nc .........OK @@ -4326,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 = 117.248281 -The maximum resident set size (KB) = 1006924 +The total amount of wall time = 120.036268 +The maximum resident set size (KB) = 1006688 -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_112342/conus13km_2threads_intel -Checking test 118 conus13km_2threads_intel results .... +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 = 56.544810 -The maximum resident set size (KB) = 1007240 +The total amount of wall time = 62.068988 +The maximum resident set size (KB) = 1004968 -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_112342/conus13km_restart_mismatch_intel -Checking test 119 conus13km_restart_mismatch_intel results .... +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 = 68.119217 -The maximum resident set size (KB) = 879924 +The total amount of wall time = 71.888271 +The maximum resident set size (KB) = 881768 -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_112342/rap_control_dyn64_phy32_intel -Checking test 120 rap_control_dyn64_phy32_intel results .... +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 Comparing sfcf012.nc .........OK @@ -4406,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 = 229.323587 -The maximum resident set size (KB) = 810996 +The total amount of wall time = 229.924763 +The maximum resident set size (KB) = 811036 -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_112342/rap_control_debug_dyn32_phy32_intel -Checking test 121 rap_control_debug_dyn32_phy32_intel results .... +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 = 290.552214 -The maximum resident set size (KB) = 951428 +The total amount of wall time = 295.211871 +The maximum resident set size (KB) = 950276 -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_112342/hrrr_control_debug_dyn32_phy32_intel -Checking test 122 hrrr_control_debug_dyn32_phy32_intel results .... +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 = 284.997850 -The maximum resident set size (KB) = 951936 +The total amount of wall time = 288.904924 +The maximum resident set size (KB) = 948412 -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_112342/conus13km_debug_intel -Checking test 123 conus13km_debug_intel results .... +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 Comparing atmf000.nc .........OK @@ -4455,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 = 890.822017 -The maximum resident set size (KB) = 1037316 +The total amount of wall time = 885.969783 +The maximum resident set size (KB) = 1035812 -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_112342/conus13km_debug_qr_intel -Checking test 124 conus13km_debug_qr_intel results .... +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 Comparing atmf000.nc .........OK @@ -4476,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 = 896.742929 -The maximum resident set size (KB) = 707000 +The total amount of wall time = 890.813272 +The maximum resident set size (KB) = 710492 -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_112342/conus13km_debug_2threads_intel -Checking test 125 conus13km_debug_2threads_intel results .... +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 = 510.612633 -The maximum resident set size (KB) = 1033880 +The total amount of wall time = 510.687907 +The maximum resident set size (KB) = 1037972 -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_112342/conus13km_radar_tten_debug_intel -Checking test 126 conus13km_radar_tten_debug_intel results .... +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.706454 -The maximum resident set size (KB) = 1100904 +The total amount of wall time = 891.181302 +The maximum resident set size (KB) = 1099836 -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_112342/rap_control_dyn64_phy32_debug_intel -Checking test 127 rap_control_dyn64_phy32_debug_intel results .... +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 = 297.461629 -The maximum resident set size (KB) = 978416 +The total amount of wall time = 298.315154 +The maximum resident set size (KB) = 982816 -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_112342/hafs_regional_atm_intel -Checking test 128 hafs_regional_atm_intel results .... +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 = 337.097248 -The maximum resident set size (KB) = 619708 +The total amount of wall time = 351.343193 +The maximum resident set size (KB) = 620944 -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_112342/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 129 hafs_regional_atm_thompson_gfdlsf_intel results .... +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 = 314.047950 -The maximum resident set size (KB) = 971988 +The total amount of wall time = 320.014688 +The maximum resident set size (KB) = 966704 -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_112342/hafs_regional_atm_ocn_intel -Checking test 130 hafs_regional_atm_ocn_intel results .... +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 Comparing archv.2019_241_06.a .........OK @@ -4559,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 = 415.230131 -The maximum resident set size (KB) = 666400 +The total amount of wall time = 421.291448 +The maximum resident set size (KB) = 666536 -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_112342/hafs_regional_atm_wav_intel -Checking test 131 hafs_regional_atm_wav_intel results .... +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 Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4575,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 = 746.032624 -The maximum resident set size (KB) = 702412 +The total amount of wall time = 750.626780 +The maximum resident set size (KB) = 691316 -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_112342/hafs_regional_atm_ocn_wav_intel -Checking test 132 hafs_regional_atm_ocn_wav_intel results .... +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 Comparing archv.2019_241_06.a .........OK @@ -4593,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 = 931.738900 -The maximum resident set size (KB) = 711576 +The total amount of wall time = 933.836052 +The maximum resident set size (KB) = 704968 -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_112342/hafs_regional_1nest_atm_intel -Checking test 133 hafs_regional_1nest_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4622,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 = 316.920249 -The maximum resident set size (KB) = 400040 +The total amount of wall time = 320.150492 +The maximum resident set size (KB) = 387648 -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_112342/hafs_regional_telescopic_2nests_atm_intel -Checking test 134 hafs_regional_telescopic_2nests_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4638,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.649511 -The maximum resident set size (KB) = 407104 +The total amount of wall time = 408.399377 +The maximum resident set size (KB) = 410968 -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_112342/hafs_global_1nest_atm_intel -Checking test 135 hafs_global_1nest_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4692,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 = 171.767898 -The maximum resident set size (KB) = 285552 +The total amount of wall time = 174.809942 +The maximum resident set size (KB) = 282528 -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_112342/hafs_global_multiple_4nests_atm_intel -Checking test 136 hafs_global_multiple_4nests_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4781,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 = 485.196145 -The maximum resident set size (KB) = 376952 +The total amount of wall time = 507.720307 +The maximum resident set size (KB) = 376972 -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_112342/hafs_regional_specified_moving_1nest_atm_intel -Checking test 137 hafs_regional_specified_moving_1nest_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4797,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 = 219.346705 -The maximum resident set size (KB) = 418392 +The total amount of wall time = 222.447786 +The maximum resident set size (KB) = 422436 -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_112342/hafs_regional_storm_following_1nest_atm_intel -Checking test 138 hafs_regional_storm_following_1nest_atm_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4826,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 = 207.595809 -The maximum resident set size (KB) = 421268 +The total amount of wall time = 206.579523 +The maximum resident set size (KB) = 417820 -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_112342/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +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 Comparing atm.nest02.f006.nc .........OK @@ -4842,97 +5015,43 @@ 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 = 266.435164 -The maximum resident set size (KB) = 490308 +The total amount of wall time = 268.429851 +The maximum resident set size (KB) = 488184 -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_112342/hafs_global_storm_following_1nest_atm_intel -Checking test 140 hafs_global_storm_following_1nest_atm_intel results .... +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 = 92.139782 -The maximum resident set size (KB) = 313088 +The total amount of wall time = 95.605926 +The maximum resident set size (KB) = 315000 -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_112342/gnv1_nested_intel -Checking test 141 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 = 238.882055 -The maximum resident set size (KB) = 680296 - -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_112342/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 142 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 = 818.206638 -The maximum resident set size (KB) = 501300 +The total amount of wall time = 816.259567 +The maximum resident set size (KB) = 498564 -Test 142 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_112342/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 143 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 @@ -4942,58 +5061,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 = 516.864924 -The maximum resident set size (KB) = 526836 +The total amount of wall time = 522.295834 +The maximum resident set size (KB) = 530228 -Test 143 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_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112342/hafs_regional_docn_intel -Checking test 144 hafs_regional_docn_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 + 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 = 529.409840 +The maximum resident set size (KB) = 707012 + +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 +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.686943 +The maximum resident set size (KB) = 710620 + +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 +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 = 384.897728 -The maximum resident set size (KB) = 651196 +The total amount of wall time = 392.604842 +The maximum resident set size (KB) = 653792 -Test 144 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_112342/hafs_regional_docn_oisst_intel -Checking test 145 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 = 387.979284 -The maximum resident set size (KB) = 636852 +The total amount of wall time = 396.925525 +The maximum resident set size (KB) = 640920 -Test 145 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_112342/hafs_regional_datm_cdeps_intel -Checking test 146 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 = 944.977542 -The maximum resident set size (KB) = 882664 +The total amount of wall time = 951.862273 +The maximum resident set size (KB) = 881080 -Test 146 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_112342/control_p8_atmlnd_sbs_intel -Checking test 147 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 @@ -5081,15 +5235,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 = 270.556649 -The maximum resident set size (KB) = 1540304 +The total amount of wall time = 274.928982 +The maximum resident set size (KB) = 1543700 -Test 147 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_112342/control_p8_atmlnd_intel -Checking test 148 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 @@ -5177,15 +5331,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 = 272.170048 -The maximum resident set size (KB) = 1543380 +The total amount of wall time = 277.779951 +The maximum resident set size (KB) = 1548328 -Test 148 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_112342/control_restart_p8_atmlnd_intel -Checking test 149 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 @@ -5205,15 +5359,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 = 151.979255 -The maximum resident set size (KB) = 738980 +The total amount of wall time = 151.491189 +The maximum resident set size (KB) = 739472 -Test 149 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_112342/atmaero_control_p8_intel -Checking test 150 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 @@ -5256,15 +5410,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 = 238.866801 -The maximum resident set size (KB) = 2851292 +The total amount of wall time = 240.375083 +The maximum resident set size (KB) = 2849900 -Test 150 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_112342/atmaero_control_p8_rad_intel -Checking test 151 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 @@ -5307,15 +5461,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 = 276.481815 -The maximum resident set size (KB) = 2908340 +The total amount of wall time = 278.341096 +The maximum resident set size (KB) = 2911956 -Test 151 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_112342/atmaero_control_p8_rad_micro_intel -Checking test 152 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 @@ -5358,15 +5512,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 = 290.664257 -The maximum resident set size (KB) = 2924028 +The total amount of wall time = 298.926042 +The maximum resident set size (KB) = 2919712 -Test 152 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_112342/regional_atmaq_debug_intel -Checking test 153 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 @@ -5379,91 +5533,10 @@ 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 = 1309.508946 -The maximum resident set size (KB) = 4442876 - -Test 153 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 -Tue Jan 30 18:39:25 UTC 2024 -Elapsed time: 01h:17m:12s. Have a nice day! -Tue Jan 30 18:44:08 UTC 2024 -Start Regression test - -Testing UFSWM Hash: ec848db8c3a6942ff39becb62b9742902b80ade3 -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) - 13ed05982efc95c077efc3b9609688554e3a854c CMEPS-interface/CMEPS (cmeps_v0.4.1-2302-g13ed059) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 400e2129e147212ae2820368a8e0de6fd2492b36 FV3 (remotes/origin/nssl_mp_init) - 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 543 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_149329/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 = 241.000499 -The maximum resident set size (KB) = 677304 +The total amount of wall time = 1320.210491 +The maximum resident set size (KB) = 4439436 -Test 001 gnv1_nested_intel PASS +Test 157 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 30 18:59:17 UTC 2024 -Elapsed time: 00h:15m: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 ba5a98a4ae..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,13 +243,17 @@ 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 | -COMPILE | hafsw_faster | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_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/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 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"