From ef110e24abc788d4d90240aec8d64c0a476f6b5b Mon Sep 17 00:00:00 2001 From: uturuncoglu Date: Wed, 25 Oct 2023 14:38:45 -0600 Subject: [PATCH 01/63] initial work for cdeps inline capability --- .gitmodules | 4 ++-- CMEPS-interface/CMEPS | 2 +- CMEPS-interface/CMakeLists.txt | 11 +++++++++++ CMakeLists.txt | 2 ++ cmake/configure_apps.cmake | 5 +---- 5 files changed, 17 insertions(+), 7 deletions(-) diff --git a/.gitmodules b/.gitmodules index a3775fc12d..2a35b6ce1b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -16,8 +16,8 @@ branch = develop [submodule "CMEPS"] path = CMEPS-interface/CMEPS - url = https://github.com/NOAA-EMC/CMEPS - branch = emc/develop + url = https://github.com/uturuncoglu/CMEPS + branch = feature/cdeps_inline [submodule "HYCOM"] path = HYCOM-interface/HYCOM url = https://github.com/NOAA-EMC/HYCOM-src diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index a5dea5f178..d86f4056d2 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit a5dea5f178fc98a4ab39c58aa43c37da6ad25d08 +Subproject commit d86f4056d24e2243ef0d9148d92839cb636cfd22 diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt index a5e63de262..4cdbaa2958 100644 --- a/CMEPS-interface/CMakeLists.txt +++ b/CMEPS-interface/CMakeLists.txt @@ -82,6 +82,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 ############################################################################### @@ -186,6 +191,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 d2059d710e..f03f4fdcb1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -71,6 +71,7 @@ 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) @@ -118,6 +119,7 @@ message("OPENMP ........... ${OPENMP}") message("PARALLEL_NETCDF .. ${PARALLEL_NETCDF}") message("JEDI_DRIVER ...... ${JEDI_DRIVER}") message("CMEPS_AOFLUX ..... ${CMEPS_AOFLUX}") +message("CDEPS_INLINE ..... ${CDEPS_INLINE}") message("") diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake index 23205f8966..eac76ffab2 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -70,10 +70,7 @@ endif() if(APP MATCHES "^(HAFS|HAFSW|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) From b14b8d2380c4629089770a73646f01eef6ecabff Mon Sep 17 00:00:00 2001 From: uturuncoglu Date: Fri, 27 Oct 2023 00:00:05 -0600 Subject: [PATCH 02/63] update cmeps --- CMEPS-interface/CMEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index d86f4056d2..5510ad7c3e 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit d86f4056d24e2243ef0d9148d92839cb636cfd22 +Subproject commit 5510ad7c3e68bf3cf08ec8b279618f793e0b9b85 From d1e008736ef87f508eafedee76faf3646487957c Mon Sep 17 00:00:00 2001 From: uturuncoglu Date: Thu, 2 Nov 2023 11:37:30 -0600 Subject: [PATCH 03/63] update cmeps --- CMEPS-interface/CMEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 5510ad7c3e..6438f3dc38 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 5510ad7c3e68bf3cf08ec8b279618f793e0b9b85 +Subproject commit 6438f3dc38d05f9e5bf619a0d5f59b0c5bf953bf From db7a2c59bc9374e74e0509b70bb9ab679b0d1b93 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Tue, 7 Nov 2023 00:44:30 -0600 Subject: [PATCH 04/63] update cmeps --- CMEPS-interface/CMEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 6438f3dc38..96c81b66a1 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 6438f3dc38d05f9e5bf619a0d5f59b0c5bf953bf +Subproject commit 96c81b66a141c8e4b1c3f5ff94b106fa781a74a0 From 740fe0ca87e070a2f31d9e7d370693f0ae9b9875 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Thu, 9 Nov 2023 12:06:53 -0600 Subject: [PATCH 05/63] update cmeps and cdeps --- .gitmodules | 4 ++-- CDEPS-interface/CDEPS | 2 +- CMEPS-interface/CMEPS | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitmodules b/.gitmodules index 2a35b6ce1b..9c414736a7 100644 --- a/.gitmodules +++ b/.gitmodules @@ -32,8 +32,8 @@ branch = emc/develop [submodule "CDEPS"] path = CDEPS-interface/CDEPS - url = https://github.com/NOAA-EMC/CDEPS - branch = develop + url = https://github.com/uturuncoglu/CDEPS + branch = feature/mask [submodule "GOCART"] path = GOCART url = https://github.com/GEOS-ESM/GOCART diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index 2aa6bfbb62..4211498df9 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb +Subproject commit 4211498df95b9cdb3a640fd356a2117c0950fd60 diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 96c81b66a1..794e6917eb 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 96c81b66a141c8e4b1c3f5ff94b106fa781a74a0 +Subproject commit 794e6917ebfae50e6f1824c0f7dde5e4a0cc3950 From 60d1f34714b917f5bdf3af10c3b5069527e8d1c4 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Sun, 12 Nov 2023 01:12:06 -0600 Subject: [PATCH 06/63] more work on cmeps --- CMEPS-interface/CMEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 794e6917eb..f9ac7af1ae 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 794e6917ebfae50e6f1824c0f7dde5e4a0cc3950 +Subproject commit f9ac7af1ae879b6d66a2a95e91e90c55675f3658 From 98b58c3580f3969a8f939314daa50eec11d435ec Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Wed, 15 Nov 2023 17:26:52 -0600 Subject: [PATCH 07/63] update to support atm->ocn direction and multiple streams --- CMEPS-interface/CMEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index f9ac7af1ae..b0af4aad26 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit f9ac7af1ae879b6d66a2a95e91e90c55675f3658 +Subproject commit b0af4aad26f0925871987f98b50376c435ccd740 From 979a53756019de7ac1662e949f399abb49fbfae2 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Thu, 16 Nov 2023 00:44:53 -0600 Subject: [PATCH 08/63] update cmeps to bring inline capability for atm->wav --- CMEPS-interface/CMEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index b0af4aad26..1296a90723 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit b0af4aad26f0925871987f98b50376c435ccd740 +Subproject commit 1296a907239c88bd9bcd6da8cde6cc1d7ecf2089 From f66bbf849e3fae4ff8b9e7f3f51bfb7f1aeae650 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Fri, 1 Dec 2023 00:16:03 -0600 Subject: [PATCH 09/63] add new RT for CDEPS inline --- tests/fv3_conf/inline_run.IN | 8 + .../nems.configure.hafs_atm_ocn_wav_inline.IN | 168 ++++++++++++++++++ tests/parm/stream.config.IN | 32 ++++ tests/rt.conf | 3 + tests/run_test.sh | 4 + tests/tests/hafs_regional_atm_ocn_wav_inline | 116 ++++++++++++ 6 files changed, 331 insertions(+) create mode 100644 tests/fv3_conf/inline_run.IN create mode 100644 tests/parm/nems.configure.hafs_atm_ocn_wav_inline.IN create mode 100644 tests/parm/stream.config.IN create mode 100644 tests/tests/hafs_regional_atm_ocn_wav_inline diff --git a/tests/fv3_conf/inline_run.IN b/tests/fv3_conf/inline_run.IN new file mode 100644 index 0000000000..90bd06dee5 --- /dev/null +++ b/tests/fv3_conf/inline_run.IN @@ -0,0 +1,8 @@ +mkdir -p INPUT_INLINE + +cd INPUT_INLINE +rsync -arv @[INPUTDATA_ROOT]/CDEPS_INLINE/datm_gfs_mesh.nc . +rsync -arv @[INPUTDATA_ROOT]/CDEPS_INLINE/ocean_forcings_fixed.nc . +rsync -arv @[INPUTDATA_ROOT]/CDEPS_INLINE/sst_mesh.nc . +rsync -arv @[INPUTDATA_ROOT]/CDEPS_INLINE/sst20190829_new.nc . +cd - diff --git a/tests/parm/nems.configure.hafs_atm_ocn_wav_inline.IN b/tests/parm/nems.configure.hafs_atm_ocn_wav_inline.IN new file mode 100644 index 0000000000..71cda58f30 --- /dev/null +++ b/tests/parm/nems.configure.hafs_atm_ocn_wav_inline.IN @@ -0,0 +1,168 @@ +############################################## +##### NEMS 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] +:: + +# 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 = .true. + skip_first_import = .true. + hycom_arche_output = .false. + hyc_esmf_exp_output = .true. + hyc_esmf_imp_output = .true. + import_diagnostics = .false. + import_setting = flexible + hyc_impexp_file = nems.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 = .true. + mesh_wav = @[MESH_WAV] + multigrid = @[MULTIGRID] + 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 = 6 + use_coldstart = true + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 + mediator_read_restart = @[USE_COLDSTART] + 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' 'mean_zonal_moment_flx_atm' 'N_m-2' + 'tauy10' 'mean_merid_moment_flx_atm' 'N_m-2' + 'prcp' 'inst_prec_rate' 'kg_m-2_s-1' + 'swflxd' 'mean_net_sw_flx' 'W_m-2' + 'lwflxd' 'mean_net_lw_flx' 'W_m-2' + 'mslprs' 'inst_pres_height_surface' 'Pa' + 'sensflx' 'mean_sensi_heat_flx' 'W_m-2' + 'latflx' 'mean_laten_heat_flx' 'W_m-2' +:: diff --git a/tests/parm/stream.config.IN b/tests/parm/stream.config.IN new file mode 100644 index 0000000000..8891e00a77 --- /dev/null +++ b/tests/parm/stream.config.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: "TMPSFC 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/rt.conf b/tests/rt.conf index a1fe74cb52..d6888257f8 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -246,6 +246,9 @@ RUN | hafs_regional_storm_following_1nest_atm_qr | - jet s4 cheyenne noaa RUN | hafs_regional_storm_following_1nest_atm_ocn | - jet s4 noaacloud | baseline | RUN | hafs_global_storm_following_1nest_atm | - jet s4 noaacloud | baseline | +COMPILE | hafsw | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCDEPS_INLINE=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON | | fv3 | +RUN | hafs_regional_atm_ocn_wav_inline | - noaacloud | baseline | + COMPILE | hafsw_debug | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON | - jet noaacloud s4 | fv3 | RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | - jet s4 noaacloud | baseline | diff --git a/tests/run_test.sh b/tests/run_test.sh index 61c59c6b51..d037a35533 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -275,6 +275,10 @@ if [[ $DOCN_CDEPS = 'true' ]]; then atparse < ${PATHRT}/parm/${DOCN_STREAM_CONFIGURE:-docn.streams.IN} > docn.streams fi +if [[ $CDEPS_INLINE = 'true' ]]; then + atparse < ${PATHRT}/parm/${CDEPS_INLINE_CONFIGURE:-stream.config.IN} > stream.config +fi + TPN=$(( TPN / THRD )) if (( TASKS < TPN )); then TPN=${TASKS} diff --git a/tests/tests/hafs_regional_atm_ocn_wav_inline b/tests/tests/hafs_regional_atm_ocn_wav_inline new file mode 100644 index 0000000000..383d52c925 --- /dev/null +++ b/tests/tests/hafs_regional_atm_ocn_wav_inline @@ -0,0 +1,116 @@ +############################################################################### +# +# HAFS regional atmosphere-ocean-wave coupled with HYCOM and WW3 +# +############################################################################### + +export TEST_DESCR="Compare HAFS regional atmosphere-ocean-wave coupled results with previous trunk version" + +export CNTL_DIR=hafs_regional_atm_ocn_wav + +export LIST_FILES="atmf006.nc \ + sfcf006.nc \ + archv.2019_241_06.a \ + archs.2019_241_06.a \ + 20190829.060000.out_grd.ww3 \ + 20190829.060000.out_pnt.ww3 \ + ufs.hafs.ww3.r.2019-08-29-21600 \ + ufs.hafs.cpl.r.2019-08-29-21600.nc" + +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 NFHMAX_HF=-1 +export NFHOUT_HF=3 +export NFHOUT=3 +export OUTPUT_FILE="'netcdf' 'netcdf'" +export SDAY=29 +export SHOUR=00 +export SMONTH=08 +export SYEAR=2019 +export WRTTASK_PER_GROUP=60 + +export OUTPUT_GRID='regional_latlon' +export CEN_LON=-62.0 +export CEN_LAT=22.0 +export LON1=-116.90 +export LAT1=-14.45 +export LON2=-7.10 +export LAT2=58.45 +export DLON=0.1 +export DLAT=0.1 + +export BLOCKSIZE=40 +export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" +export DEFLATE_LEVEL=-1 +export INPES=20 +export JNPES=12 +export NPX=721 +export NPY=601 +export NPZ=91 +export NPZP=$(($NPZ + 1)) +export K_SPLIT=2 +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="22.0" +export TARGET_LON="-62.0" +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="240" +export TILE_COARSE="0" +export NUM_TILE_TOP=1 +export NEST_REFINE="0" +export NEST_IOFFSETS="999" +export NEST_JOFFSETS="999" + +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. + +export CDEPS_DOCN=false +export OCEAN_START_DTG=43340.00000 + +export atm_model="fv3" +export ocn_model="hycom" +export wav_model="ww3" +OCN_tasks=60 +WAV_tasks=60 +export coupling_interval_sec=360 +export MESH_ATM="unset" + +export CDEPS_INLINE=true +export INLINE_MESH_ATM="INPUT_INLINE/datm_gfs_mesh.nc" +export INLINE_STREAM_FILES_ATM="\"INPUT_INLINE/ocean_forcings_fixed.nc\"" +export INLINE_MESH_OCN="INPUT_INLINE/sst_mesh.nc" +export INLINE_STREAM_FILES_OCN="\"INPUT_INLINE/sst20190829_new.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 MODEL_CONFIGURE="model_configure_hafs.IN" +export NEMS_CONFIGURE="nems.configure.hafs_atm_ocn_wav_inline.IN" +export CDEPS_INLINE_CONFIGURE="stream.config.IN" +export FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN hafs_ww3_run.IN inline_run.IN" From 1160abe0fa6fd0263b82ed60995c0373750671d5 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Thu, 28 Dec 2023 16:26:30 -0600 Subject: [PATCH 10/63] update CMEPS --- CMEPS-interface/CMEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 1296a90723..cdb819bef6 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 1296a907239c88bd9bcd6da8cde6cc1d7ecf2089 +Subproject commit cdb819bef6e66287d4ab9e74fb439e8ba3fa05fc From f16dc6dc31899e11247d7332ffeba590843243c9 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Fri, 29 Dec 2023 02:07:24 -0600 Subject: [PATCH 11/63] update test --- tests/parm/nems.configure.hafs_atm_ocn_wav_inline.IN | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/parm/nems.configure.hafs_atm_ocn_wav_inline.IN b/tests/parm/nems.configure.hafs_atm_ocn_wav_inline.IN index 71cda58f30..e72be625e9 100644 --- a/tests/parm/nems.configure.hafs_atm_ocn_wav_inline.IN +++ b/tests/parm/nems.configure.hafs_atm_ocn_wav_inline.IN @@ -30,6 +30,8 @@ MED_attributes:: normalization = none merge_type = copy pio_rearranger = @[pio_rearranger] + ocn_use_data_first_import = .true. + wav_use_data_first_import = .true. :: # ATM # @@ -58,8 +60,8 @@ OCN_attributes:: cpl_min = 0 cpl_sec = @[coupling_interval_sec] base_dtg = @[SYEAR]@[SMONTH]@[SDAY]@[SHOUR] - merge_import = .true. - skip_first_import = .true. + merge_import = .false. + skip_first_import = .false. hycom_arche_output = .false. hyc_esmf_exp_output = .true. hyc_esmf_imp_output = .true. @@ -84,7 +86,7 @@ WAV_attributes:: Verbosity = 0 Diagnostic = 0 OverwriteSlice = false - merge_import = .true. + merge_import = .false. mesh_wav = @[MESH_WAV] multigrid = @[MULTIGRID] user_sets_restname = true From 2d3c8f8be1fbc5ec0cfe5256dcd6586fc7130dd2 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Fri, 29 Dec 2023 11:14:27 -0600 Subject: [PATCH 12/63] sync components --- CMEPS-interface/CMEPS | 2 +- FV3 | 2 +- GOCART | 2 +- MOM6-interface/MOM6 | 2 +- WW3 | 2 +- stochastic_physics | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index cdb819bef6..865215708d 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit cdb819bef6e66287d4ab9e74fb439e8ba3fa05fc +Subproject commit 865215708d957e2a75ef48e40ceff1088826d888 diff --git a/FV3 b/FV3 index 7f941323e7..bba399053d 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 7f941323e754b61f3368dffb89ebee3d362abeda +Subproject commit bba399053d3939241938f19ee598895eea54fd65 diff --git a/GOCART b/GOCART index 6ea78fd790..041422934c 160000 --- a/GOCART +++ b/GOCART @@ -1 +1 @@ -Subproject commit 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 +Subproject commit 041422934cae1570f2f0e67239d5d89f11c6e1b7 diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index 02d4dc455b..a36cb73d69 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit 02d4dc455bb517b4c641c919dc6b9dc829e1e0d4 +Subproject commit a36cb73d6924f6cf56a72b5799bef3d75fe4dd61 diff --git a/WW3 b/WW3 index 97e6a63ebf..02693d837f 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f +Subproject commit 02693d837f2cd99d20ed08515878c2b5e9525e64 diff --git a/stochastic_physics b/stochastic_physics index 62b89146be..37e7405269 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 62b89146be1250f354cd50a14096c0c25f2f3952 +Subproject commit 37e740526993fd162d092266ced19c625fbc3d8e From 9cd7a5f01ae54dff600e0f01e7dedcabc9c3669d Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Fri, 29 Dec 2023 11:29:18 -0600 Subject: [PATCH 13/63] adjust test after sync --- .../ufs.configure.hafs_atm_ocn_wav_inline.IN | 167 ++++++++++++++++++ tests/tests/hafs_regional_atm_ocn_wav_inline | 20 +-- 2 files changed, 176 insertions(+), 11 deletions(-) create mode 100644 tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN 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/tests/hafs_regional_atm_ocn_wav_inline b/tests/tests/hafs_regional_atm_ocn_wav_inline index 383d52c925..0f6cf078cd 100644 --- a/tests/tests/hafs_regional_atm_ocn_wav_inline +++ b/tests/tests/hafs_regional_atm_ocn_wav_inline @@ -26,9 +26,7 @@ export FHMAX=6 export RESTART_N=${FHMAX} export DT_ATMOS=180 export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NFHOUT=3 +export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 export SHOUR=00 @@ -47,7 +45,7 @@ export DLON=0.1 export DLAT=0.1 export BLOCKSIZE=40 -export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf_nonsst export DEFLATE_LEVEL=-1 export INPES=20 export JNPES=12 @@ -92,13 +90,13 @@ export CPL_IMP_MRG=.true. export CDEPS_DOCN=false export OCEAN_START_DTG=43340.00000 -export atm_model="fv3" -export ocn_model="hycom" -export wav_model="ww3" +export atm_model=fv3 +export ocn_model=hycom +export wav_model=ww3 OCN_tasks=60 WAV_tasks=60 export coupling_interval_sec=360 -export MESH_ATM="unset" +export MESH_ATM=unset export CDEPS_INLINE=true export INLINE_MESH_ATM="INPUT_INLINE/datm_gfs_mesh.nc" @@ -110,7 +108,7 @@ 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 MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm_ocn_wav_inline.IN" -export CDEPS_INLINE_CONFIGURE="stream.config.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.IN" export FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN hafs_ww3_run.IN inline_run.IN" From b5e608f002dde7c4c66c9780f90e4ef5872325b8 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Fri, 29 Dec 2023 11:29:43 -0600 Subject: [PATCH 14/63] delete old file --- .../nems.configure.hafs_atm_ocn_wav_inline.IN | 170 ------------------ 1 file changed, 170 deletions(-) delete mode 100644 tests/parm/nems.configure.hafs_atm_ocn_wav_inline.IN diff --git a/tests/parm/nems.configure.hafs_atm_ocn_wav_inline.IN b/tests/parm/nems.configure.hafs_atm_ocn_wav_inline.IN deleted file mode 100644 index e72be625e9..0000000000 --- a/tests/parm/nems.configure.hafs_atm_ocn_wav_inline.IN +++ /dev/null @@ -1,170 +0,0 @@ -############################################## -##### NEMS 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 = nems.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] - multigrid = @[MULTIGRID] - 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 = 6 - use_coldstart = true - orb_eccen = 1.e36 - orb_iyear = 2000 - orb_iyear_align = 2000 - orb_mode = fixed_year - orb_mvelp = 1.e36 - orb_obliq = 1.e36 - mediator_read_restart = @[USE_COLDSTART] - 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' 'mean_zonal_moment_flx_atm' 'N_m-2' - 'tauy10' 'mean_merid_moment_flx_atm' 'N_m-2' - 'prcp' 'inst_prec_rate' 'kg_m-2_s-1' - 'swflxd' 'mean_net_sw_flx' 'W_m-2' - 'lwflxd' 'mean_net_lw_flx' 'W_m-2' - 'mslprs' 'inst_pres_height_surface' 'Pa' - 'sensflx' 'mean_sensi_heat_flx' 'W_m-2' - 'latflx' 'mean_laten_heat_flx' 'W_m-2' -:: From 82f4701994195598826ca23bd5e047090fd09ef6 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Fri, 29 Dec 2023 12:40:57 -0600 Subject: [PATCH 15/63] fix typo --- tests/tests/hafs_regional_atm_ocn_wav_inline | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests/hafs_regional_atm_ocn_wav_inline b/tests/tests/hafs_regional_atm_ocn_wav_inline index 0f6cf078cd..cdedf6c95c 100644 --- a/tests/tests/hafs_regional_atm_ocn_wav_inline +++ b/tests/tests/hafs_regional_atm_ocn_wav_inline @@ -110,5 +110,5 @@ export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_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.IN" +export CDEPS_INLINE_CONFIGURE=stream.config.IN export FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN hafs_ww3_run.IN inline_run.IN" From b0a59982d21740feb5912ba99402f56d133f5694 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Fri, 5 Jan 2024 16:29:22 -0600 Subject: [PATCH 16/63] sync FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index bba399053d..997907fe89 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit bba399053d3939241938f19ee598895eea54fd65 +Subproject commit 997907fe89b18fcc53405cf6722942810bf09eed From c8405a56750cbf9337eaddb5bb8f22dc60d2b4aa Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Fri, 5 Jan 2024 20:15:01 -0600 Subject: [PATCH 17/63] use same compile for the inline test --- tests/rt.conf | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/rt.conf b/tests/rt.conf index ffb110f413..e03bc9689b 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -224,12 +224,13 @@ COMPILE | rrfs_dyn64_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_H RUN | rap_control_dyn64_phy32_debug | - noaacloud | baseline | ### HAFS tests ### -COMPILE | hafsw | intel | -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 | | fv3 | +COMPILE | hafsw | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCDEPS_INLINE=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 | | fv3 | RUN | hafs_regional_atm | | baseline | RUN | hafs_regional_atm_thompson_gfdlsf | | baseline | RUN | hafs_regional_atm_ocn | | baseline | RUN | hafs_regional_atm_wav | | baseline | RUN | hafs_regional_atm_ocn_wav | - noaacloud | baseline | +RUN | hafs_regional_atm_ocn_wav_inline | - noaacloud | baseline | RUN | hafs_regional_1nest_atm | - jet s4 noaacloud | baseline | RUN | hafs_regional_telescopic_2nests_atm | - jet s4 noaacloud | baseline | RUN | hafs_global_1nest_atm | - jet s4 noaacloud | baseline | @@ -242,9 +243,6 @@ RUN | hafs_global_storm_following_1nest_atm | - jet s4 noaacloud # 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 | -COMPILE | hafsw | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCDEPS_INLINE=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON | | fv3 | -RUN | hafs_regional_atm_ocn_wav_inline | - 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 | From 3c21070a3a5874a0dc627da8ac8c772f235baae8 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Fri, 5 Jan 2024 20:15:51 -0600 Subject: [PATCH 18/63] update cmeps --- CMEPS-interface/CMEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 865215708d..4d08b94793 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 865215708d957e2a75ef48e40ceff1088826d888 +Subproject commit 4d08b9479359da0e5eb6bfecd07bc722cb94845e From 6ce1cc234ad544149a19cb093c5d4cc3e2003058 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Fri, 5 Jan 2024 20:16:25 -0600 Subject: [PATCH 19/63] update defaults --- tests/default_vars.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 2906da8ac8..529b922df7 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -333,6 +333,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. @@ -781,6 +782,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 @@ -977,6 +979,7 @@ export HAFS=false export AQM=false export DATM_CDEPS=true export DOCN_CDEPS=false +export CDEPS_INLINE=false export DAYS=1 # model configure @@ -1051,6 +1054,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 @@ -1066,6 +1070,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 @@ -1084,6 +1089,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 @@ -1155,6 +1161,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 From e26aae01ae7dec12f100faedd884193248e54a88 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Thu, 18 Jan 2024 22:58:18 -0600 Subject: [PATCH 20/63] port mom6 regional app changes from Bin's fork --- CMakeLists.txt | 6 ++++-- MOM6-interface/CMakeLists.txt | 19 +++++++++++++++---- cmake/configure_apps.cmake | 11 ++++++++--- 3 files changed, 27 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f03f4fdcb1..20849d39ed 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,6 +66,7 @@ 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") @@ -115,6 +116,7 @@ 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}") @@ -148,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|LND|HAFS|HAFS-ALL)$") diff --git a/MOM6-interface/CMakeLists.txt b/MOM6-interface/CMakeLists.txt index 67f4d875c7..60b4ef7642 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 eac76ffab2..31ac11907f 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -68,14 +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) 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|HAFS-ALL)$") + 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() From 4338f338db1df44814d6cf8cfc6e367f10b8940c Mon Sep 17 00:00:00 2001 From: "Bin.Liu" Date: Thu, 25 Jan 2024 00:33:52 +0000 Subject: [PATCH 21/63] * Add the following two RTs to test HAFS regional moving nest coupling through CMEPS with inline CDEPS. - hafs_regional_storm_following_1nest_atm_ocn_wav_inline - hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 * Remove the hafs_regional_atm_ocn_wav_inline RT Contributors: @binli2337 and @BinLiu-NOAA --- .gitmodules | 3 +- CMEPS-interface/CMEPS | 2 +- tests/fv3_conf/hafs_fv3_run.IN | 15 + tests/fv3_conf/hafs_ww3_run.IN | 6 +- tests/fv3_conf/hycom_hat10_run.IN | 1 + tests/fv3_conf/inline_run.IN | 8 - tests/parm/MOM6_data_table_hafs | 2 + tests/parm/MOM_input_hafs | 976 ++++++++++++++++++ .../parm/diag_table/diag_table_hafs_template | 60 +- tests/parm/input_nest_hafs.nml.IN | 8 + tests/parm/input_regional_hafs.nml.IN | 8 + ...tream.config.IN => stream.config_hycom.IN} | 2 +- tests/parm/stream.config_mom6.IN | 32 + .../ufs.configure.hafs_atm_ocn_wav_mom6.IN | 137 +++ tests/rt.conf | 11 +- tests/tests/hafs_regional_atm_ocn_wav_inline | 114 -- ...l_storm_following_1nest_atm_ocn_wav_inline | 153 +++ ...nal_storm_following_1nest_atm_ocn_wav_mom6 | 152 +++ 18 files changed, 1558 insertions(+), 132 deletions(-) delete mode 100644 tests/fv3_conf/inline_run.IN create mode 100644 tests/parm/MOM6_data_table_hafs create mode 100644 tests/parm/MOM_input_hafs rename tests/parm/{stream.config.IN => stream.config_hycom.IN} (96%) create mode 100644 tests/parm/stream.config_mom6.IN create mode 100644 tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN delete mode 100644 tests/tests/hafs_regional_atm_ocn_wav_inline create mode 100644 tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_inline create mode 100644 tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 diff --git a/.gitmodules b/.gitmodules index 9c414736a7..8f7a596234 100644 --- a/.gitmodules +++ b/.gitmodules @@ -17,7 +17,8 @@ [submodule "CMEPS"] path = CMEPS-interface/CMEPS url = https://github.com/uturuncoglu/CMEPS - branch = feature/cdeps_inline + #branch = feature/cdeps_inline + branch = feature/inline_mom6 [submodule "HYCOM"] path = HYCOM-interface/HYCOM url = https://github.com/NOAA-EMC/HYCOM-src diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 4d08b94793..a1cbcbcb01 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 4d08b9479359da0e5eb6bfecd07bc722cb94845e +Subproject commit a1cbcbcb0189c49cdd3336b4f7c24b6e0b6aa0dc 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/fv3_conf/inline_run.IN b/tests/fv3_conf/inline_run.IN deleted file mode 100644 index 90bd06dee5..0000000000 --- a/tests/fv3_conf/inline_run.IN +++ /dev/null @@ -1,8 +0,0 @@ -mkdir -p INPUT_INLINE - -cd INPUT_INLINE -rsync -arv @[INPUTDATA_ROOT]/CDEPS_INLINE/datm_gfs_mesh.nc . -rsync -arv @[INPUTDATA_ROOT]/CDEPS_INLINE/ocean_forcings_fixed.nc . -rsync -arv @[INPUTDATA_ROOT]/CDEPS_INLINE/sst_mesh.nc . -rsync -arv @[INPUTDATA_ROOT]/CDEPS_INLINE/sst20190829_new.nc . -cd - 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/diag_table/diag_table_hafs_template b/tests/parm/diag_table/diag_table_hafs_template index 802adbdc4b..a05ef04007 100644 --- a/tests/parm/diag_table/diag_table_hafs_template +++ b/tests/parm/diag_table/diag_table_hafs_template @@ -1,6 +1,5 @@ ufs.hafs @[SYEAR] @[SMONTH] @[SDAY] @[SHOUR] 0 0 - #output files "grid_spec", -1, "months", 1, "days", "time" #"atmos_4xdaily", 1, "hours", 1, "days", "time" @@ -11,8 +10,63 @@ ufs.hafs "fv3_history2d", 0, "hours", 1, "hours", "time" #"ref3D", 0, "hours", 1, "hours", "time" #"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 #======================= @@ -259,6 +313,8 @@ ufs.hafs "gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ssu", "ssu", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ssv", "ssv", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2 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.IN b/tests/parm/stream.config_hycom.IN similarity index 96% rename from tests/parm/stream.config.IN rename to tests/parm/stream.config_hycom.IN index 8891e00a77..f548739bcc 100644 --- a/tests/parm/stream.config.IN +++ b/tests/parm/stream.config_hycom.IN @@ -13,7 +13,7 @@ stream_vectors01: null stream_mesh_file01: @[INLINE_MESH_OCN] stream_lev_dimname01: null stream_data_files01: @[INLINE_STREAM_FILES_OCN] -stream_data_variables01: "TMPSFC So_t" +stream_data_variables01: "TMP_surface So_t" stream_dst_mask01: 1 taxmode02: limit 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_mom6.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN new file mode 100644 index 0000000000..3258028ec8 --- /dev/null +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN @@ -0,0 +1,137 @@ +############################################## +##### 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 + history_n = 6 + 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 = 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 +:: diff --git a/tests/rt.conf b/tests/rt.conf index e03bc9689b..a2e8124694 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -224,13 +224,12 @@ COMPILE | rrfs_dyn64_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_H RUN | rap_control_dyn64_phy32_debug | - noaacloud | baseline | ### HAFS tests ### -COMPILE | hafsw | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCDEPS_INLINE=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 | | fv3 | +COMPILE | hafsw | intel | -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 | | fv3 | RUN | hafs_regional_atm | | baseline | RUN | hafs_regional_atm_thompson_gfdlsf | | baseline | RUN | hafs_regional_atm_ocn | | baseline | RUN | hafs_regional_atm_wav | | baseline | RUN | hafs_regional_atm_ocn_wav | - noaacloud | baseline | -RUN | hafs_regional_atm_ocn_wav_inline | - noaacloud | baseline | RUN | hafs_regional_1nest_atm | - jet s4 noaacloud | baseline | RUN | hafs_regional_telescopic_2nests_atm | - jet s4 noaacloud | baseline | RUN | hafs_global_1nest_atm | - jet s4 noaacloud | baseline | @@ -246,8 +245,12 @@ RUN | gnv1_nested | - s4 noaacloud COMPILE | hafsw_debug | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON | - jet noaacloud s4 | fv3 | RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | - jet s4 noaacloud | baseline | -COMPILE | hafsw_faster | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_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 -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_nonsst,FV3_HAFS_v1_gfdlmp_tedmf -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/tests/hafs_regional_atm_ocn_wav_inline b/tests/tests/hafs_regional_atm_ocn_wav_inline deleted file mode 100644 index cdedf6c95c..0000000000 --- a/tests/tests/hafs_regional_atm_ocn_wav_inline +++ /dev/null @@ -1,114 +0,0 @@ -############################################################################### -# -# HAFS regional atmosphere-ocean-wave coupled with HYCOM and WW3 -# -############################################################################### - -export TEST_DESCR="Compare HAFS regional atmosphere-ocean-wave coupled results with previous trunk version" - -export CNTL_DIR=hafs_regional_atm_ocn_wav - -export LIST_FILES="atmf006.nc \ - sfcf006.nc \ - archv.2019_241_06.a \ - archs.2019_241_06.a \ - 20190829.060000.out_grd.ww3 \ - 20190829.060000.out_pnt.ww3 \ - ufs.hafs.ww3.r.2019-08-29-21600 \ - ufs.hafs.cpl.r.2019-08-29-21600.nc" - -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=29 -export SHOUR=00 -export SMONTH=08 -export SYEAR=2019 -export WRTTASK_PER_GROUP=60 - -export OUTPUT_GRID='regional_latlon' -export CEN_LON=-62.0 -export CEN_LAT=22.0 -export LON1=-116.90 -export LAT1=-14.45 -export LON2=-7.10 -export LAT2=58.45 -export DLON=0.1 -export DLAT=0.1 - -export BLOCKSIZE=40 -export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -export DEFLATE_LEVEL=-1 -export INPES=20 -export JNPES=12 -export NPX=721 -export NPY=601 -export NPZ=91 -export NPZP=$(($NPZ + 1)) -export K_SPLIT=2 -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="22.0" -export TARGET_LON="-62.0" -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="240" -export TILE_COARSE="0" -export NUM_TILE_TOP=1 -export NEST_REFINE="0" -export NEST_IOFFSETS="999" -export NEST_JOFFSETS="999" - -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. - -export CDEPS_DOCN=false -export OCEAN_START_DTG=43340.00000 - -export atm_model=fv3 -export ocn_model=hycom -export wav_model=ww3 -OCN_tasks=60 -WAV_tasks=60 -export coupling_interval_sec=360 -export MESH_ATM=unset - -export CDEPS_INLINE=true -export INLINE_MESH_ATM="INPUT_INLINE/datm_gfs_mesh.nc" -export INLINE_STREAM_FILES_ATM="\"INPUT_INLINE/ocean_forcings_fixed.nc\"" -export INLINE_MESH_OCN="INPUT_INLINE/sst_mesh.nc" -export INLINE_STREAM_FILES_OCN="\"INPUT_INLINE/sst20190829_new.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 MODEL_CONFIGURE=model_configure_hafs.IN -export UFS_CONFIGURE=ufs.configure.hafs_atm_ocn_wav_inline.IN -export CDEPS_INLINE_CONFIGURE=stream.config.IN -export FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN hafs_ww3_run.IN inline_run.IN" 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..bb5aa95526 --- /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 coupled with MOM6 +# +############################################################################### + +export TEST_DESCR="Compare HAFS regional with 1 storm-following moving nest and fv3-mom6 coupled results with previous trunk version" + +export CNTL_DIR=hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 + +export LIST_FILES="atmf006.nc \ + sfcf006.nc \ + atm.nest02.f006.nc \ + sfc.nest02.f006.nc \ + ocn_2020_08_25_18.nc \ + 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.mom6 +export RUNTYPE=startup +export USE_COLDSTART=false + +export CDEPS_DOCN=false + +export atm_model=fv3 +export ocn_model=mom6 +export wav_model=ww3 + +ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) +OCN_tasks=60 +WAV_tasks=60 + +export atm_omp_num_threads=2 +export med_omp_num_threads=2 +export ocn_omp_num_threads=2 +export wav_omp_num_threads=2 + +export coupling_interval_sec=360 +export MESH_ATM=unset +export MESH_OCN=INPUT/mom6_mesh.nc + +export CDEPS_INLINE=true +export INLINE_MESH_ATM="INPUT/gfs_mesh.nc" +export INLINE_STREAM_FILES_ATM="INPUT/gfs_forcings.nc" +export INLINE_MESH_OCN="INPUT/gfs_mesh.nc" +export INLINE_STREAM_FILES_OCN="INPUT/gfs_forcings.nc" +export STREAM_OFFSET=0 + +export FIELD_TABLE=field_table_hafs +export DIAG_TABLE=diag_table_hafs_template +export INPUT_NML=input_regional_hafs.nml.IN +export INPUT_NEST02_NML=input_nest_hafs.nml.IN +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm_ocn_wav_mom6.IN +export CDEPS_INLINE_CONFIGURE=stream.config_mom6.IN +export FV3_RUN="hafs_fv3_run.IN hafs_ww3_run.IN" From d48c823c91bf7daa51d695659fb334b146f0e422 Mon Sep 17 00:00:00 2001 From: "Bin.Liu" Date: Thu, 25 Jan 2024 05:32:20 -0600 Subject: [PATCH 22/63] For the new added HAFS RTs for CMEPS with inline CDEPS coupling, reduce the forecast length from 6 to 3 hours to save computation resources. --- .../ufs.configure.hafs_atm_ocn_wav_inline.IN | 4 ++-- .../ufs.configure.hafs_atm_ocn_wav_mom6.IN | 6 +++--- ...al_storm_following_1nest_atm_ocn_wav_inline | 18 +++++++++--------- ...onal_storm_following_1nest_atm_ocn_wav_mom6 | 16 ++++++++-------- 4 files changed, 22 insertions(+), 22 deletions(-) diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN index 894f510fb1..32abc80389 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN @@ -23,7 +23,7 @@ MED_attributes:: OCN_model = @[ocn_model] WAV_model = @[wav_model] MED_model = cmeps - history_n = 6 + history_n = 3 history_option = nhours history_ymd = -999 coupling_mode = @[CPLMODE] @@ -133,7 +133,7 @@ ALLCOMP_attributes:: ScalarFieldName = cpl_scalars start_type = startup case_name = ufs.hafs - restart_n = 6 + restart_n = 3 restart_option = nhours restart_ymd = -999 dbug_flag = @[cap_dbug_flag] diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN index 3258028ec8..08aa04273a 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN @@ -23,7 +23,7 @@ MED_attributes:: OCN_model = @[ocn_model] WAV_model = @[wav_model] MED_model = cmeps - history_n = 6 + history_n = 3 history_option = nhours history_ymd = -999 coupling_mode = @[CPLMODE] @@ -55,7 +55,7 @@ OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 Diagnostic = 0 - history_n = 6 + history_n = 3 history_option = nhours merge_import = .false. skip_first_import = .false. #.true. @@ -120,7 +120,7 @@ ALLCOMP_attributes:: ScalarFieldName = cpl_scalars start_type = startup case_name = ufs.hafs - restart_n = 6 + restart_n = 3 restart_option = nhours restart_ymd = -999 dbug_flag = @[cap_dbug_flag] 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 index 796c165057..665731f01a 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_inline +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_inline @@ -8,21 +8,21 @@ export TEST_DESCR="Compare HAFS regional with 1 storm-following moving nest and 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 LIST_FILES="atmf003.nc \ + sfcf003.nc \ + atm.nest02.f003.nc \ + sfc.nest02.f003.nc \ + archv.2020_238_15.a \ + archs.2020_238_15.a \ + 20200825.150000.out_grd.ww3 \ + 20200825.150000.out_pnt.ww3" export_fv3 export_hafs export_hafs_regional export HAFS=true -export FHMAX=6 +export FHMAX=3 export RESTART_N=${FHMAX} export DT_ATMOS=180 export IDEFLATE=1 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 index bb5aa95526..6da2ea2315 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 @@ -8,20 +8,20 @@ export TEST_DESCR="Compare HAFS regional with 1 storm-following moving nest and export CNTL_DIR=hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 -export LIST_FILES="atmf006.nc \ - sfcf006.nc \ - atm.nest02.f006.nc \ - sfc.nest02.f006.nc \ - ocn_2020_08_25_18.nc \ - 20200825.180000.out_grd.ww3 \ - 20200825.180000.out_pnt.ww3" +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=6 +export FHMAX=3 export RESTART_N=${FHMAX} export DT_ATMOS=180 export IDEFLATE=1 From 46ef564c9cd84bbc2cdb45b898fcbcc66418c16b Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Thu, 25 Jan 2024 11:06:56 -0600 Subject: [PATCH 23/63] update cmeps --- CMEPS-interface/CMEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 4d08b94793..a1cbcbcb01 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 4d08b9479359da0e5eb6bfecd07bc722cb94845e +Subproject commit a1cbcbcb0189c49cdd3336b4f7c24b6e0b6aa0dc From e78171a2907c6bb17b4f2f217471b3b33b21f113 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Thu, 25 Jan 2024 11:10:47 -0600 Subject: [PATCH 24/63] fix submodule file --- .gitmodules | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index 8f7a596234..9c414736a7 100644 --- a/.gitmodules +++ b/.gitmodules @@ -17,8 +17,7 @@ [submodule "CMEPS"] path = CMEPS-interface/CMEPS url = https://github.com/uturuncoglu/CMEPS - #branch = feature/cdeps_inline - branch = feature/inline_mom6 + branch = feature/cdeps_inline [submodule "HYCOM"] path = HYCOM-interface/HYCOM url = https://github.com/NOAA-EMC/HYCOM-src From 7b96b49ae574fda21ffd7175b0bca547924da618 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Thu, 25 Jan 2024 11:14:43 -0600 Subject: [PATCH 25/63] sync components with upstream --- CICE-interface/CICE | 2 +- FV3 | 2 +- MOM6-interface/MOM6 | 2 +- WW3 | 2 +- stochastic_physics | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CICE-interface/CICE b/CICE-interface/CICE index 50aa2c9788..620e48fe75 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit 50aa2c97882fbc9d4918813a22169fe97b424564 +Subproject commit 620e48fe75d92aa607af7e21f2d8691baddd2851 diff --git a/FV3 b/FV3 index 997907fe89..6c2b775e96 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 997907fe89b18fcc53405cf6722942810bf09eed +Subproject commit 6c2b775e96545edfe62c3972bbced4af8a2d9f0a diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index a36cb73d69..c8a7325c04 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit a36cb73d6924f6cf56a72b5799bef3d75fe4dd61 +Subproject commit c8a7325c040b4cb1327c55c8248e8e66972239a5 diff --git a/WW3 b/WW3 index 02693d837f..4ffc47e10e 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 02693d837f2cd99d20ed08515878c2b5e9525e64 +Subproject commit 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 diff --git a/stochastic_physics b/stochastic_physics index 37e7405269..a556180202 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 37e740526993fd162d092266ced19c625fbc3d8e +Subproject commit a5561802021d89a9a1e2b52cb69393efcdc6f71c From cc476f1e8b3363213b44dd1aab439bcb9e97bfbc Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Thu, 25 Jan 2024 12:03:42 -0600 Subject: [PATCH 26/63] point correct cmeps branch --- .gitmodules | 2 +- CMEPS-interface/CMEPS | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index 9c414736a7..47b1c15450 100644 --- a/.gitmodules +++ b/.gitmodules @@ -17,7 +17,7 @@ [submodule "CMEPS"] path = CMEPS-interface/CMEPS url = https://github.com/uturuncoglu/CMEPS - branch = feature/cdeps_inline + branch = feture/inline [submodule "HYCOM"] path = HYCOM-interface/HYCOM url = https://github.com/NOAA-EMC/HYCOM-src diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index a1cbcbcb01..fb993eb4b6 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit a1cbcbcb0189c49cdd3336b4f7c24b6e0b6aa0dc +Subproject commit fb993eb4b6a67859aa50e7a420517bfeb7713c92 From 83a2f099acf71fdb0f4c992e4afaf67a6eccb5d6 Mon Sep 17 00:00:00 2001 From: Bin Liu Date: Thu, 25 Jan 2024 23:40:22 +0000 Subject: [PATCH 27/63] Minor cleanups/updates for diag_table_hafs_template and hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 --- tests/parm/diag_table/diag_table_hafs_template | 5 +++-- .../hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/parm/diag_table/diag_table_hafs_template b/tests/parm/diag_table/diag_table_hafs_template index a05ef04007..d3ad4afbb5 100644 --- a/tests/parm/diag_table/diag_table_hafs_template +++ b/tests/parm/diag_table/diag_table_hafs_template @@ -1,5 +1,6 @@ ufs.hafs @[SYEAR] @[SMONTH] @[SDAY] @[SHOUR] 0 0 + #output files "grid_spec", -1, "months", 1, "days", "time" #"atmos_4xdaily", 1, "hours", 1, "days", "time" @@ -10,6 +11,8 @@ ufs.hafs "fv3_history2d", 0, "hours", 1, "hours", "time" #"ref3D", 0, "hours", 1, "hours", "time" #"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" @@ -313,8 +316,6 @@ ufs.hafs "gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2 -"gfs_sfc", "ssu", "ssu", "fv3_history2d", "all", .false., "none", 2 -"gfs_sfc", "ssv", "ssv", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2 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 index 6da2ea2315..60ce05b605 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 @@ -1,10 +1,10 @@ ############################################################################### # -# HAFS regional with 1 storm-following moving nest and atmosphere-ocean coupled with MOM6 +# 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 coupled results with previous trunk version" +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 From c1df12e1026e3aa548693b3be28d5adb87dad42e Mon Sep 17 00:00:00 2001 From: Bin Liu Date: Thu, 25 Jan 2024 23:52:26 +0000 Subject: [PATCH 28/63] Update tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN so that the ocean albedo calculation inside CMEPS works properly. (From @DeniseWorthen) --- tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN index 08aa04273a..1ca0848395 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN @@ -113,10 +113,9 @@ ALLCOMP_attributes:: OCN_model = @[ocn_model] WAV_model = @[wav_model] MED_model = cmeps - ScalarFieldCount = 3 + ScalarFieldCount = 2 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 - ScalarFieldIdxNextSwCday = 3 ScalarFieldName = cpl_scalars start_type = startup case_name = ufs.hafs From 3268e8b4bd098ed126cbccd4a90a448cb505ac87 Mon Sep 17 00:00:00 2001 From: Bin Liu Date: Fri, 26 Jan 2024 12:54:53 +0000 Subject: [PATCH 29/63] Update the HAFS_ALL build logic to not include MOM6 (from @binli2337). --- cmake/configure_apps.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake index 31ac11907f..e78039188e 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -74,7 +74,7 @@ if(APP MATCHES "^(HAFS|HAFSW|HAFS-MOM6|HAFS-MOM6W|HAFS-ALL)$") set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(FV3 ON CACHE BOOL "Enable FV3" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) - if(APP MATCHES "^(HAFS-MOM6|HAFS-MOM6W|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)$") From f726b9c56c36e0883ee9b7c02926c1a80cbc9c05 Mon Sep 17 00:00:00 2001 From: "Bin.Liu" Date: Fri, 26 Jan 2024 13:29:57 -0600 Subject: [PATCH 30/63] Update the forecast length to 6h for RT hafs_regional_storm_following_1nest_atm_ocn_wav_inline (to be the same as hafs_regional_storm_following_1nest_atm_ocn_wav). --- .../ufs.configure.hafs_atm_ocn_wav_inline.IN | 4 ++-- ...al_storm_following_1nest_atm_ocn_wav_inline | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN index 32abc80389..894f510fb1 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN @@ -23,7 +23,7 @@ MED_attributes:: OCN_model = @[ocn_model] WAV_model = @[wav_model] MED_model = cmeps - history_n = 3 + history_n = 6 history_option = nhours history_ymd = -999 coupling_mode = @[CPLMODE] @@ -133,7 +133,7 @@ ALLCOMP_attributes:: ScalarFieldName = cpl_scalars start_type = startup case_name = ufs.hafs - restart_n = 3 + restart_n = 6 restart_option = nhours restart_ymd = -999 dbug_flag = @[cap_dbug_flag] 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 index 665731f01a..796c165057 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_inline +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_inline @@ -8,21 +8,21 @@ export TEST_DESCR="Compare HAFS regional with 1 storm-following moving nest and export CNTL_DIR=hafs_regional_storm_following_1nest_atm_ocn_wav_inline -export LIST_FILES="atmf003.nc \ - sfcf003.nc \ - atm.nest02.f003.nc \ - sfc.nest02.f003.nc \ - archv.2020_238_15.a \ - archs.2020_238_15.a \ - 20200825.150000.out_grd.ww3 \ - 20200825.150000.out_pnt.ww3" +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=3 +export FHMAX=6 export RESTART_N=${FHMAX} export DT_ATMOS=180 export IDEFLATE=1 From a725478dd7b1be4f19e3fc0ded0de9adb8809a36 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Fri, 26 Jan 2024 15:46:17 -0600 Subject: [PATCH 31/63] sync CDEPS with ESCOMP --- CDEPS-interface/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index 4211498df9..5d4f62a802 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit 4211498df95b9cdb3a640fd356a2117c0950fd60 +Subproject commit 5d4f62a80241f2a67417ad0c41aaaac8246977f7 From 9e0296e22d037040409339c4dc9858972c3fd19a Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Fri, 26 Jan 2024 15:49:52 -0600 Subject: [PATCH 32/63] minor fix for error checking in CDEPS --- CDEPS-interface/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index 5d4f62a802..93384076c2 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit 5d4f62a80241f2a67417ad0c41aaaac8246977f7 +Subproject commit 93384076c25bcb58ee3c401881f266ab9e2c7403 From 327bd2a724921c8ea0a2d89a4b1be7297230e8b7 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Sun, 28 Jan 2024 20:45:55 -0600 Subject: [PATCH 33/63] update cmeps --- CMEPS-interface/CMEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index fb993eb4b6..64e1c276de 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit fb993eb4b6a67859aa50e7a420517bfeb7713c92 +Subproject commit 64e1c276dee0de636b03a9bd1186fb794699b02d From 6c3c3c75cbbac6568f8371b0dcb085b688abd339 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Mon, 29 Jan 2024 06:19:33 -0600 Subject: [PATCH 34/63] fix cdeps build --- CDEPS-interface/cdeps_files.cmake | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CDEPS-interface/cdeps_files.cmake b/CDEPS-interface/cdeps_files.cmake index 2d276f71cb..a539acfbc1 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 @@ -46,6 +48,7 @@ list(APPEND cdeps_datm_files CDEPS/datm/datm_datamode_gfs_mod.F90 CDEPS/datm/datm_datamode_gfs_hafs_mod.F90 CDEPS/datm/datm_datamode_jra_mod.F90 + CDEPS/datm/datm_datamode_simple_mod.F90 ) list(APPEND cdeps_dice_files From c8473c652fb61e308286b187d17f13218c99fb2e Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Mon, 29 Jan 2024 09:29:06 -0600 Subject: [PATCH 35/63] update cmeps --- CMEPS-interface/CMEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 64e1c276de..09dfd3c432 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 64e1c276dee0de636b03a9bd1186fb794699b02d +Subproject commit 09dfd3c432cc97f7f4eb265c5be7a9b8f7127694 From 70815adfc24b51d1866d3f9f3f736a3547062c40 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Mon, 29 Jan 2024 09:34:11 -0600 Subject: [PATCH 36/63] fix cmeps submodule branch --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 47b1c15450..34d5d89aa6 100644 --- a/.gitmodules +++ b/.gitmodules @@ -17,7 +17,7 @@ [submodule "CMEPS"] path = CMEPS-interface/CMEPS url = https://github.com/uturuncoglu/CMEPS - branch = feture/inline + branch = feature/inline [submodule "HYCOM"] path = HYCOM-interface/HYCOM url = https://github.com/NOAA-EMC/HYCOM-src From dbd3cbae3a25ec39e29c89743bdab11cfebe33fd Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Mon, 29 Jan 2024 14:44:10 -0600 Subject: [PATCH 37/63] sync components --- FV3 | 2 +- NOAHMP-interface/noahmp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/FV3 b/FV3 index 6c2b775e96..1d2c8231b9 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 6c2b775e96545edfe62c3972bbced4af8a2d9f0a +Subproject commit 1d2c8231b9f01b50ea687920b994b73129073119 diff --git a/NOAHMP-interface/noahmp b/NOAHMP-interface/noahmp index 569e354aba..0cd3e23ae5 160000 --- a/NOAHMP-interface/noahmp +++ b/NOAHMP-interface/noahmp @@ -1 +1 @@ -Subproject commit 569e354ababbde7a7cd68647533769a5c966468d +Subproject commit 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 From 965fc34f20c4be575812234542ff0697263e4613 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Tue, 30 Jan 2024 15:05:20 -0600 Subject: [PATCH 38/63] update components --- .gitmodules | 4 ++-- CDEPS-interface/CDEPS | 2 +- CMEPS-interface/CMEPS | 2 +- FV3 | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitmodules b/.gitmodules index 34d5d89aa6..aadc08d30d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -32,8 +32,8 @@ branch = emc/develop [submodule "CDEPS"] path = CDEPS-interface/CDEPS - url = https://github.com/uturuncoglu/CDEPS - branch = feature/mask + url = https://github.com/ESCOMP/CDEPS + branch = main [submodule "GOCART"] path = GOCART url = https://github.com/GEOS-ESM/GOCART diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index 93384076c2..3c70fc852a 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit 93384076c25bcb58ee3c401881f266ab9e2c7403 +Subproject commit 3c70fc852aac65ea46c79d727b42d30d97a4a0e0 diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 09dfd3c432..c4f5082a87 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 09dfd3c432cc97f7f4eb265c5be7a9b8f7127694 +Subproject commit c4f5082a871b32e11f28311b0c466f913f070a8d diff --git a/FV3 b/FV3 index 1d2c8231b9..bd38c5676d 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 1d2c8231b9f01b50ea687920b994b73129073119 +Subproject commit bd38c5676d99f350551f6b41cc1d9ffad020ce5c From 731ee000fc0183efad8bf18b667b7f9cffb5fd22 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Tue, 30 Jan 2024 20:11:06 -0600 Subject: [PATCH 39/63] update cmeps --- .gitmodules | 4 ++-- CMEPS-interface/CMEPS | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index aadc08d30d..a87c7b0909 100644 --- a/.gitmodules +++ b/.gitmodules @@ -16,8 +16,8 @@ branch = develop [submodule "CMEPS"] path = CMEPS-interface/CMEPS - url = https://github.com/uturuncoglu/CMEPS - branch = feature/inline + url = https://github.com/ESCOMP/CMEPS + branch = main [submodule "HYCOM"] path = HYCOM-interface/HYCOM url = https://github.com/NOAA-EMC/HYCOM-src diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index c4f5082a87..7e0908cb95 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit c4f5082a871b32e11f28311b0c466f913f070a8d +Subproject commit 7e0908cb958fc36002225efe00a3181f24c41c7a From 60ceb47af641f83f0cd078ed6586c1e78ca4ebfa Mon Sep 17 00:00:00 2001 From: Bin Liu Date: Wed, 31 Jan 2024 21:53:11 +0000 Subject: [PATCH 40/63] Update to point the correct fork and branch for CDEPS for this PR. --- .gitmodules | 4 ++-- CDEPS-interface/CDEPS | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index a87c7b0909..fbccb292b8 100644 --- a/.gitmodules +++ b/.gitmodules @@ -32,8 +32,8 @@ branch = emc/develop [submodule "CDEPS"] path = CDEPS-interface/CDEPS - url = https://github.com/ESCOMP/CDEPS - branch = main + url = https://github.com/uturuncoglu/CDEPS + branch = feature/mask [submodule "GOCART"] path = GOCART url = https://github.com/GEOS-ESM/GOCART diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index 3c70fc852a..4cb3a7537c 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit 3c70fc852aac65ea46c79d727b42d30d97a4a0e0 +Subproject commit 4cb3a7537c3c13efdbda5e4aa1276886f13344d9 From f4812a3d717eb939d9b701765d0b2b830e0e3b23 Mon Sep 17 00:00:00 2001 From: Bin Liu Date: Thu, 1 Feb 2024 18:02:22 +0000 Subject: [PATCH 41/63] Update submoudle CDEPS-interface/CDEPS and tests/parm/datm.streams.era5.IN. --- CDEPS-interface/CDEPS | 2 +- tests/parm/datm.streams.era5.IN | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index 4cb3a7537c..66cc55363e 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit 4cb3a7537c3c13efdbda5e4aa1276886f13344d9 +Subproject commit 66cc55363eafc1141d99101a81f34ce05fb50b3e 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] From f6efb53fb3891744fdd092bff9ca026df1d32fd9 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Thu, 1 Feb 2024 15:37:58 -0600 Subject: [PATCH 42/63] update FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index ef04de2c2a..bd38c5676d 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit ef04de2c2a2109dbe2cc6992f6658b7af2875002 +Subproject commit bd38c5676d99f350551f6b41cc1d9ffad020ce5c From 508e78530802d9b8f5e686e110068917b73bdc97 Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Thu, 1 Feb 2024 16:51:26 -0600 Subject: [PATCH 43/63] update cmeps --- .gitmodules | 4 ++-- CMEPS-interface/CMEPS | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index fbccb292b8..34d5d89aa6 100644 --- a/.gitmodules +++ b/.gitmodules @@ -16,8 +16,8 @@ branch = develop [submodule "CMEPS"] path = CMEPS-interface/CMEPS - url = https://github.com/ESCOMP/CMEPS - branch = main + url = https://github.com/uturuncoglu/CMEPS + branch = feature/inline [submodule "HYCOM"] path = HYCOM-interface/HYCOM url = https://github.com/NOAA-EMC/HYCOM-src diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 7e0908cb95..a312c645ec 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 7e0908cb958fc36002225efe00a3181f24c41c7a +Subproject commit a312c645ec1fcf301f463a779200391927f4b1ea From 9b772c4f231473fbaa6766ebe3397d6870f8eecd Mon Sep 17 00:00:00 2001 From: Ufuk Turuncoglu Date: Thu, 1 Feb 2024 16:52:07 -0600 Subject: [PATCH 44/63] sync FV3 --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index bd38c5676d..8db821cb94 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit bd38c5676d99f350551f6b41cc1d9ffad020ce5c +Subproject commit 8db821cb944f5a6f2586a42926434cca91fcac94 From 50246e0848c158f529948993315f33f4a4552294 Mon Sep 17 00:00:00 2001 From: Bin Liu Date: Thu, 1 Feb 2024 23:14:54 +0000 Subject: [PATCH 45/63] Update rt.sh to load default latest version of rocoto on Jet, Orion, and Hercules. --- tests/rt.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) From d2f97b9584f8d0d1bb662c46798cd64d9be30165 Mon Sep 17 00:00:00 2001 From: Bin Liu Date: Fri, 2 Feb 2024 00:22:38 +0000 Subject: [PATCH 46/63] Update submodule CMEPS --- CMEPS-interface/CMEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index a312c645ec..eb87f4aec7 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit a312c645ec1fcf301f463a779200391927f4b1ea +Subproject commit eb87f4aec79f5374846379eacc1da7a1b79be812 From 63878c432efea27e925d1c574da142bf5446a627 Mon Sep 17 00:00:00 2001 From: Bin Liu Date: Fri, 2 Feb 2024 13:19:19 +0000 Subject: [PATCH 47/63] Add developer-end RegressionTests_hera.log showing only two new added RTs failed due to missing baseline. --- tests/logs/RegressionTests_hera.log | 1991 ++++++++++++++------------- 1 file changed, 1016 insertions(+), 975 deletions(-) diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index bac8bf5a24..831f02b4a3 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,75 +1,76 @@ -Wed Jan 31 18:09:13 UTC 2024 +Thu Feb 1 18:31:54 UTC 2024 Start Regression test -Testing UFSWM Hash: 2d9959c5ab71b771c51e1d5995792df7c00e0a9c +Testing UFSWM Hash: f4812a3d717eb939d9b701765d0b2b830e0e3b23 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 7437f73df4b43e8924b6493c5067544af097ad78 CMEPS-interface/CMEPS (cmeps_v0.4.1-1412-g7437f73) + 7e0908cb958fc36002225efe00a3181f24c41c7a CMEPS-interface/CMEPS (cmeps0.14.51) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b7587dfeacd95f43da0595dee42b78a2d78653e9 FV3 (remotes/origin/feature/hafsv2_baseline_with_ssc) + ef04de2c2a2109dbe2cc6992f6658b7af2875002 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atm_debug_dyn32_intel elapsed time 261 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 202 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 197 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 198 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 303 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 586 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 213 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 557 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 200 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 533 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 628 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 570 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 563 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 172 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 354 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 833 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 354 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 56 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 589 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 206 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 613 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 606 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 661 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 532 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 527 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 557 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 607 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 827 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 590 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 228 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 655 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 126 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 236 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 825 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 881 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 667 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 250 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 953 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 137 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 258 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 969 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 826 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 675 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atmaero_intel elapsed time 585 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 214 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 552 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 265 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 196 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 596 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 204 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 202 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 307 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 551 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 648 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 582 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 584 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 528 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 175 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 369 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 813 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 371 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 66 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 610 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 627 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 220 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 603 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 622 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 190 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 655 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 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 192 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 536 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 559 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 592 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 831 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 598 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 683 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 249 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 933 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 143 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 247 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 965 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 844 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 686 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 231 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 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 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 822 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 920 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 99 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 510 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile wam_debug_intel elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 508 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -134,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 300.404145 - 0: The maximum resident set size (KB) = 3165168 + 0: The total amount of wall time = 304.478273 + 0: The maximum resident set size (KB) = 3151400 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -205,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 958.849040 - 0: The maximum resident set size (KB) = 1737316 + 0: The total amount of wall time = 955.383746 + 0: The maximum resident set size (KB) = 1724460 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_gfsv17_iau_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -258,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1000.393895 - 0: The maximum resident set size (KB) = 2010992 + 0: The total amount of wall time = 1006.711816 + 0: The maximum resident set size (KB) = 2015396 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_restart_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -318,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 444.113380 - 0: The maximum resident set size (KB) = 1111960 + 0: The total amount of wall time = 449.441866 + 0: The maximum resident set size (KB) = 1106552 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_mpi_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -389,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1083.599189 - 0: The maximum resident set size (KB) = 1630040 + 0: The total amount of wall time = 1081.749945 + 0: The maximum resident set size (KB) = 1598672 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_debug_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -448,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1318.209369 - 0: The maximum resident set size (KB) = 1674928 + 0: The total amount of wall time = 1350.587612 + 0: The maximum resident set size (KB) = 1667436 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -520,14 +521,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 323.419385 - 0: The maximum resident set size (KB) = 3193912 + 0: The total amount of wall time = 328.452046 + 0: The maximum resident set size (KB) = 3202552 Test 007 cpld_control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_restart_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -580,14 +581,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 185.838568 - 0: The maximum resident set size (KB) = 3256396 + 0: The total amount of wall time = 184.651853 + 0: The maximum resident set size (KB) = 3239304 Test 008 cpld_restart_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -652,14 +653,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 330.699620 - 0: The maximum resident set size (KB) = 3218064 + 0: The total amount of wall time = 323.480778 + 0: The maximum resident set size (KB) = 3233788 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_restart_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -712,14 +713,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 189.631562 - 0: The maximum resident set size (KB) = 3258700 + 0: The total amount of wall time = 189.129710 + 0: The maximum resident set size (KB) = 3270184 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_2threads_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -772,14 +773,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 314.360731 - 0: The maximum resident set size (KB) = 3533168 + 0: The total amount of wall time = 312.253817 + 0: The maximum resident set size (KB) = 3541004 Test 011 cpld_2threads_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_decomp_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -832,14 +833,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 331.358645 - 0: The maximum resident set size (KB) = 3190708 + 0: The total amount of wall time = 329.107695 + 0: The maximum resident set size (KB) = 3171992 Test 012 cpld_decomp_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_mpi_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -892,14 +893,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 270.184247 - 0: The maximum resident set size (KB) = 3050880 + 0: The total amount of wall time = 269.948939 + 0: The maximum resident set size (KB) = 3053164 Test 013 cpld_mpi_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -964,14 +965,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 329.568195 - 0: The maximum resident set size (KB) = 3200920 + 0: The total amount of wall time = 333.737242 + 0: The maximum resident set size (KB) = 3181004 Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_c192_p8_intel Checking test 015 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1024,14 +1025,14 @@ Checking test 015 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 571.455811 - 0: The maximum resident set size (KB) = 3317264 + 0: The total amount of wall time = 574.672854 + 0: The maximum resident set size (KB) = 3322368 Test 015 cpld_control_c192_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_restart_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_restart_c192_p8_intel Checking test 016 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1084,14 +1085,14 @@ Checking test 016 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 344.415303 - 0: The maximum resident set size (KB) = 3600668 + 0: The total amount of wall time = 372.734067 + 0: The maximum resident set size (KB) = 3609644 Test 016 cpld_restart_c192_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_bmark_p8_intel Checking test 017 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1139,14 +1140,14 @@ Checking test 017 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 554.099603 - 0: The maximum resident set size (KB) = 4125644 + 0: The total amount of wall time = 568.943073 + 0: The maximum resident set size (KB) = 4103344 Test 017 cpld_bmark_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_restart_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_restart_bmark_p8_intel Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1194,14 +1195,14 @@ Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 359.574622 - 0: The maximum resident set size (KB) = 4295196 + 0: The total amount of wall time = 376.018274 + 0: The maximum resident set size (KB) = 4340460 Test 018 cpld_restart_bmark_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_s2sa_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_s2sa_p8_intel Checking test 019 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1252,14 +1253,14 @@ Checking test 019 cpld_s2sa_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 308.308039 - 0: The maximum resident set size (KB) = 3166596 + 0: The total amount of wall time = 308.130936 + 0: The maximum resident set size (KB) = 3164368 Test 019 cpld_s2sa_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_noaero_p8_intel Checking test 020 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1323,14 +1324,14 @@ Checking test 020 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 262.247116 - 0: The maximum resident set size (KB) = 1714400 + 0: The total amount of wall time = 261.214330 + 0: The maximum resident set size (KB) = 1714788 Test 020 cpld_control_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_nowave_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_nowave_noaero_p8_intel Checking test 021 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1392,14 +1393,14 @@ Checking test 021 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 256.169386 - 0: The maximum resident set size (KB) = 1780784 + 0: The total amount of wall time = 250.438936 + 0: The maximum resident set size (KB) = 1765004 Test 021 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_debug_p8_intel Checking test 022 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1452,14 +1453,14 @@ Checking test 022 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 470.014218 - 0: The maximum resident set size (KB) = 3237756 + 0: The total amount of wall time = 474.921413 + 0: The maximum resident set size (KB) = 3229608 Test 022 cpld_debug_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_debug_noaero_p8_intel Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1511,14 +1512,14 @@ Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 324.859988 - 0: The maximum resident set size (KB) = 1747868 + 0: The total amount of wall time = 319.537908 + 0: The maximum resident set size (KB) = 1751152 Test 023 cpld_debug_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_noaero_p8_agrid_intel Checking test 024 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1580,14 +1581,14 @@ Checking test 024 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 252.052148 - 0: The maximum resident set size (KB) = 1751216 + 0: The total amount of wall time = 253.216018 + 0: The maximum resident set size (KB) = 1748832 Test 024 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_c48_intel Checking test 025 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1637,14 +1638,14 @@ Checking test 025 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 554.642268 - 0: The maximum resident set size (KB) = 2824928 + 0: The total amount of wall time = 549.184228 + 0: The maximum resident set size (KB) = 2804144 Test 025 cpld_control_c48_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_p8_faster_intel Checking test 026 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1709,14 +1710,14 @@ Checking test 026 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 307.437789 - 0: The maximum resident set size (KB) = 3191804 + 0: The total amount of wall time = 307.947897 + 0: The maximum resident set size (KB) = 3202300 Test 026 cpld_control_p8_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_pdlib_p8_intel Checking test 027 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1780,14 +1781,14 @@ Checking test 027 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 956.899819 - 0: The maximum resident set size (KB) = 1763832 + 0: The total amount of wall time = 968.923728 + 0: The maximum resident set size (KB) = 1744316 Test 027 cpld_control_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_restart_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_restart_pdlib_p8_intel Checking test 028 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1839,14 +1840,14 @@ Checking test 028 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 447.684473 - 0: The maximum resident set size (KB) = 1140984 + 0: The total amount of wall time = 451.102792 + 0: The maximum resident set size (KB) = 1164976 Test 028 cpld_restart_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_mpi_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_mpi_pdlib_p8_intel Checking test 029 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1910,14 +1911,14 @@ Checking test 029 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1106.794430 - 0: The maximum resident set size (KB) = 1669996 + 0: The total amount of wall time = 1112.979072 + 0: The maximum resident set size (KB) = 1648780 Test 029 cpld_mpi_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_debug_pdlib_p8_intel Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1969,14 +1970,14 @@ Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1477.550707 - 0: The maximum resident set size (KB) = 1703060 + 0: The total amount of wall time = 1479.451803 + 0: The maximum resident set size (KB) = 1707716 Test 030 cpld_debug_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_flake_intel Checking test 031 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1987,14 +1988,14 @@ Checking test 031 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 185.797345 - 0: The maximum resident set size (KB) = 697036 + 0: The total amount of wall time = 186.378955 + 0: The maximum resident set size (KB) = 697968 Test 031 control_flake_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_CubedSphereGrid_intel Checking test 032 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2021,14 +2022,14 @@ Checking test 032 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.409668 - 0: The maximum resident set size (KB) = 648128 + 0: The total amount of wall time = 133.343412 + 0: The maximum resident set size (KB) = 650012 Test 032 control_CubedSphereGrid_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_CubedSphereGrid_parallel_intel Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2037,20 +2038,20 @@ Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf024.nc .........OK Comparing cubed_sphere_grid_atmf000.nc .........OK - Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.229656 - 0: The maximum resident set size (KB) = 653224 + 0: The total amount of wall time = 139.174677 + 0: The maximum resident set size (KB) = 656064 Test 033 control_CubedSphereGrid_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_latlon_intel Checking test 034 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2061,14 +2062,14 @@ Checking test 034 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.187899 - 0: The maximum resident set size (KB) = 647796 + 0: The total amount of wall time = 135.767554 + 0: The maximum resident set size (KB) = 652172 Test 034 control_latlon_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_wrtGauss_netcdf_parallel_intel Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2079,14 +2080,14 @@ Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.058656 - 0: The maximum resident set size (KB) = 652532 + 0: The total amount of wall time = 138.169868 + 0: The maximum resident set size (KB) = 651832 Test 035 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_c48_intel Checking test 036 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2125,14 +2126,14 @@ Checking test 036 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 365.861446 -0: The maximum resident set size (KB) = 870712 +0: The total amount of wall time = 371.829639 +0: The maximum resident set size (KB) = 867324 Test 036 control_c48_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_c192_intel Checking test 037 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2143,14 +2144,14 @@ Checking test 037 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 527.425867 - 0: The maximum resident set size (KB) = 852632 + 0: The total amount of wall time = 531.172006 + 0: The maximum resident set size (KB) = 852224 Test 037 control_c192_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_c384_intel Checking test 038 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2161,14 +2162,14 @@ Checking test 038 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 528.364147 - 0: The maximum resident set size (KB) = 1276832 + 0: The total amount of wall time = 532.877385 + 0: The maximum resident set size (KB) = 1280980 Test 038 control_c384_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_c384gdas_intel Checking test 039 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2180,8 +2181,8 @@ 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 ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK @@ -2199,7 +2200,7 @@ Checking test 039 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK @@ -2211,14 +2212,14 @@ Checking test 039 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 466.704258 - 0: The maximum resident set size (KB) = 1389984 + 0: The total amount of wall time = 469.739241 + 0: The maximum resident set size (KB) = 1388788 Test 039 control_c384gdas_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_stochy_intel Checking test 040 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2229,28 +2230,28 @@ Checking test 040 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.570660 - 0: The maximum resident set size (KB) = 638424 + 0: The total amount of wall time = 87.776286 + 0: The maximum resident set size (KB) = 645956 Test 040 control_stochy_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_stochy_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_stochy_restart_intel Checking test 041 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.396437 - 0: The maximum resident set size (KB) = 502068 + 0: The total amount of wall time = 49.749660 + 0: The maximum resident set size (KB) = 497932 Test 041 control_stochy_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_lndp_intel Checking test 042 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2261,14 +2262,14 @@ Checking test 042 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.922938 - 0: The maximum resident set size (KB) = 652896 + 0: The total amount of wall time = 83.385665 + 0: The maximum resident set size (KB) = 650468 Test 042 control_lndp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_iovr4_intel Checking test 043 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2283,14 +2284,14 @@ Checking test 043 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.009865 - 0: The maximum resident set size (KB) = 645280 + 0: The total amount of wall time = 135.423898 + 0: The maximum resident set size (KB) = 634604 Test 043 control_iovr4_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_iovr5_intel Checking test 044 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2305,14 +2306,14 @@ Checking test 044 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.462718 - 0: The maximum resident set size (KB) = 651388 + 0: The total amount of wall time = 136.381530 + 0: The maximum resident set size (KB) = 614944 Test 044 control_iovr5_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_p8_intel Checking test 045 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2359,14 +2360,14 @@ Checking test 045 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.390428 - 0: The maximum resident set size (KB) = 1613988 + 0: The total amount of wall time = 167.330527 + 0: The maximum resident set size (KB) = 1625004 Test 045 control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_p8_ugwpv1_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_p8_ugwpv1_intel Checking test 046 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2413,14 +2414,14 @@ Checking test 046 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 158.480056 - 0: The maximum resident set size (KB) = 1618396 + 0: The total amount of wall time = 166.912219 + 0: The maximum resident set size (KB) = 1617168 Test 046 control_p8_ugwpv1_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_restart_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_restart_p8_intel Checking test 047 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2459,14 +2460,14 @@ Checking test 047 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 85.645215 - 0: The maximum resident set size (KB) = 882108 + 0: The total amount of wall time = 89.578642 + 0: The maximum resident set size (KB) = 885068 Test 047 control_restart_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_noqr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_noqr_p8_intel Checking test 048 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2513,14 +2514,14 @@ Checking test 048 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 161.143932 - 0: The maximum resident set size (KB) = 1606308 + 0: The total amount of wall time = 169.391461 + 0: The maximum resident set size (KB) = 1577588 Test 048 control_noqr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_restart_noqr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_restart_noqr_p8_intel Checking test 049 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2559,14 +2560,14 @@ Checking test 049 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 85.072075 - 0: The maximum resident set size (KB) = 923876 + 0: The total amount of wall time = 86.939533 + 0: The maximum resident set size (KB) = 926892 Test 049 control_restart_noqr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_decomp_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_decomp_p8_intel Checking test 050 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2609,14 +2610,14 @@ Checking test 050 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.807563 - 0: The maximum resident set size (KB) = 1596612 + 0: The total amount of wall time = 174.011024 + 0: The maximum resident set size (KB) = 1577832 Test 050 control_decomp_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_2threads_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_2threads_p8_intel Checking test 051 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2659,14 +2660,14 @@ Checking test 051 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 154.433139 - 0: The maximum resident set size (KB) = 1707212 + 0: The total amount of wall time = 164.391844 + 0: The maximum resident set size (KB) = 1715452 Test 051 control_2threads_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_p8_lndp_intel Checking test 052 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2685,14 +2686,14 @@ Checking test 052 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 301.462017 - 0: The maximum resident set size (KB) = 1605080 + 0: The total amount of wall time = 310.526857 + 0: The maximum resident set size (KB) = 1598928 Test 052 control_p8_lndp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_p8_rrtmgp_intel Checking test 053 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2739,14 +2740,14 @@ Checking test 053 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 216.713606 - 0: The maximum resident set size (KB) = 1672980 + 0: The total amount of wall time = 217.615531 + 0: The maximum resident set size (KB) = 1685400 Test 053 control_p8_rrtmgp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_p8_mynn_intel Checking test 054 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2793,14 +2794,14 @@ Checking test 054 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.284448 - 0: The maximum resident set size (KB) = 1617280 + 0: The total amount of wall time = 168.172888 + 0: The maximum resident set size (KB) = 1601828 Test 054 control_p8_mynn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/merra2_thompson_intel Checking test 055 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2847,14 +2848,14 @@ Checking test 055 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.796969 - 0: The maximum resident set size (KB) = 1628252 + 0: The total amount of wall time = 202.702167 + 0: The maximum resident set size (KB) = 1604160 Test 055 merra2_thompson_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_control_intel Checking test 056 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2865,28 +2866,28 @@ Checking test 056 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.292528 - 0: The maximum resident set size (KB) = 846428 + 0: The total amount of wall time = 298.611794 + 0: The maximum resident set size (KB) = 846948 Test 056 regional_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_restart_intel Checking test 057 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 153.353315 - 0: The maximum resident set size (KB) = 1015964 + 0: The total amount of wall time = 152.941597 + 0: The maximum resident set size (KB) = 1018916 Test 057 regional_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_decomp_intel Checking test 058 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2897,14 +2898,14 @@ Checking test 058 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 312.285063 - 0: The maximum resident set size (KB) = 840548 + 0: The total amount of wall time = 328.490043 + 0: The maximum resident set size (KB) = 840324 Test 058 regional_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_2threads_intel Checking test 059 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2915,14 +2916,14 @@ Checking test 059 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 178.309693 - 0: The maximum resident set size (KB) = 849252 + 0: The total amount of wall time = 189.218277 + 0: The maximum resident set size (KB) = 850180 Test 059 regional_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_noquilt_intel Checking test 060 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2930,28 +2931,28 @@ Checking test 060 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 291.425492 - 0: The maximum resident set size (KB) = 1360852 + 0: The total amount of wall time = 297.898314 + 0: The maximum resident set size (KB) = 1360492 Test 060 regional_noquilt_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_netcdf_parallel_intel Checking test 061 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 292.876970 - 0: The maximum resident set size (KB) = 845012 + 0: The total amount of wall time = 299.729472 + 0: The maximum resident set size (KB) = 847164 Test 061 regional_netcdf_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_2dwrtdecomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_2dwrtdecomp_intel Checking test 062 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2962,14 +2963,14 @@ Checking test 062 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.505558 - 0: The maximum resident set size (KB) = 847248 + 0: The total amount of wall time = 300.631944 + 0: The maximum resident set size (KB) = 821600 Test 062 regional_2dwrtdecomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_wofs_intel Checking test 063 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2980,14 +2981,14 @@ Checking test 063 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 383.682233 - 0: The maximum resident set size (KB) = 1916716 + 0: The total amount of wall time = 385.918907 + 0: The maximum resident set size (KB) = 1915916 Test 063 regional_wofs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_intel Checking test 064 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3034,14 +3035,14 @@ Checking test 064 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.201069 - 0: The maximum resident set size (KB) = 1094392 + 0: The total amount of wall time = 452.668752 + 0: The maximum resident set size (KB) = 1111132 Test 064 rap_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_spp_sppt_shum_skeb_intel Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3052,14 +3053,14 @@ Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 236.413508 - 0: The maximum resident set size (KB) = 1280936 + 0: The total amount of wall time = 236.259517 + 0: The maximum resident set size (KB) = 1282352 Test 065 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_decomp_intel Checking test 066 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3106,14 +3107,14 @@ Checking test 066 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 473.997068 - 0: The maximum resident set size (KB) = 1023624 + 0: The total amount of wall time = 475.049545 + 0: The maximum resident set size (KB) = 1021076 Test 066 rap_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_2threads_intel Checking test 067 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3160,14 +3161,14 @@ Checking test 067 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 423.411177 - 0: The maximum resident set size (KB) = 1176864 + 0: The total amount of wall time = 429.113838 + 0: The maximum resident set size (KB) = 1180108 Test 067 rap_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_restart_intel Checking test 068 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3206,14 +3207,14 @@ Checking test 068 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.270326 - 0: The maximum resident set size (KB) = 1079488 + 0: The total amount of wall time = 231.436125 + 0: The maximum resident set size (KB) = 1096828 Test 068 rap_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_sfcdiff_intel Checking test 069 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3260,14 +3261,14 @@ Checking test 069 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 447.299503 - 0: The maximum resident set size (KB) = 1098460 + 0: The total amount of wall time = 448.163392 + 0: The maximum resident set size (KB) = 1112992 Test 069 rap_sfcdiff_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_sfcdiff_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_sfcdiff_decomp_intel Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3314,14 +3315,14 @@ Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.797924 - 0: The maximum resident set size (KB) = 1028012 + 0: The total amount of wall time = 478.193251 + 0: The maximum resident set size (KB) = 1036672 Test 070 rap_sfcdiff_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_sfcdiff_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_sfcdiff_restart_intel Checking test 071 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3360,14 +3361,14 @@ Checking test 071 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 336.301031 - 0: The maximum resident set size (KB) = 1118268 + 0: The total amount of wall time = 336.816153 + 0: The maximum resident set size (KB) = 1130928 Test 071 rap_sfcdiff_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_intel Checking test 072 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3414,14 +3415,14 @@ Checking test 072 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.382811 - 0: The maximum resident set size (KB) = 1002948 + 0: The total amount of wall time = 227.931622 + 0: The maximum resident set size (KB) = 1028040 Test 072 hrrr_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_decomp_intel Checking test 073 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3468,14 +3469,14 @@ Checking test 073 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.345145 - 0: The maximum resident set size (KB) = 998252 + 0: The total amount of wall time = 236.770983 + 0: The maximum resident set size (KB) = 1002696 Test 073 hrrr_control_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_2threads_intel Checking test 074 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3522,28 +3523,28 @@ Checking test 074 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 207.439034 - 0: The maximum resident set size (KB) = 1109396 + 0: The total amount of wall time = 211.340348 + 0: The maximum resident set size (KB) = 1110984 Test 074 hrrr_control_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_restart_intel Checking test 075 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 119.894280 - 0: The maximum resident set size (KB) = 1003192 + 0: The total amount of wall time = 118.582682 + 0: The maximum resident set size (KB) = 994824 Test 075 hrrr_control_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rrfs_v1beta_intel Checking test 076 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3590,14 +3591,14 @@ Checking test 076 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 442.392615 - 0: The maximum resident set size (KB) = 1092060 + 0: The total amount of wall time = 443.882229 + 0: The maximum resident set size (KB) = 1091760 Test 076 rrfs_v1beta_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rrfs_v1nssl_intel Checking test 077 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3612,14 +3613,14 @@ Checking test 077 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 534.899176 - 0: The maximum resident set size (KB) = 1988040 + 0: The total amount of wall time = 539.457211 + 0: The maximum resident set size (KB) = 1985020 Test 077 rrfs_v1nssl_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rrfs_v1nssl_nohailnoccn_intel Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3634,14 +3635,14 @@ Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 521.645754 - 0: The maximum resident set size (KB) = 2035620 + 0: The total amount of wall time = 526.087498 + 0: The maximum resident set size (KB) = 2073840 Test 078 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3652,14 +3653,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 344.191910 - 0: The maximum resident set size (KB) = 739860 + 0: The total amount of wall time = 343.029445 + 0: The maximum resident set size (KB) = 743548 Test 079 control_csawmg_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3670,14 +3671,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 338.800840 - 0: The maximum resident set size (KB) = 737072 + 0: The total amount of wall time = 343.625556 + 0: The maximum resident set size (KB) = 746096 Test 080 control_csawmgt_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3688,26 +3689,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.091013 - 0: The maximum resident set size (KB) = 742520 + 0: The total amount of wall time = 188.566456 + 0: The maximum resident set size (KB) = 744336 Test 081 control_ras_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_wam_intel Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.528794 - 0: The maximum resident set size (KB) = 651112 + 0: The total amount of wall time = 115.037020 + 0: The maximum resident set size (KB) = 636560 Test 082 control_wam_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3754,14 +3755,14 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 148.618958 - 0: The maximum resident set size (KB) = 1597176 + 0: The total amount of wall time = 154.812975 + 0: The maximum resident set size (KB) = 1614800 Test 083 control_p8_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3772,14 +3773,14 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 267.666826 - 0: The maximum resident set size (KB) = 845180 + 0: The total amount of wall time = 266.591044 + 0: The maximum resident set size (KB) = 853148 Test 084 regional_control_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3806,364 +3807,364 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 145.515685 - 0: The maximum resident set size (KB) = 816192 + 0: The total amount of wall time = 148.936978 + 0: The maximum resident set size (KB) = 806872 Test 085 control_CubedSphereGrid_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_wrtGauss_netcdf_parallel_debug_intel Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.721996 - 0: The maximum resident set size (KB) = 789720 + 0: The total amount of wall time = 147.841355 + 0: The maximum resident set size (KB) = 805576 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_stochy_debug_intel Checking test 087 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.222506 - 0: The maximum resident set size (KB) = 817236 + 0: The total amount of wall time = 168.216324 + 0: The maximum resident set size (KB) = 809712 Test 087 control_stochy_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_lndp_debug_intel Checking test 088 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 144.633981 - 0: The maximum resident set size (KB) = 813628 + 0: The total amount of wall time = 153.966249 + 0: The maximum resident set size (KB) = 815028 Test 088 control_lndp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_csawmg_debug_intel Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.309040 - 0: The maximum resident set size (KB) = 839920 + 0: The total amount of wall time = 229.533042 + 0: The maximum resident set size (KB) = 853208 Test 089 control_csawmg_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_csawmgt_debug_intel Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 224.354541 - 0: The maximum resident set size (KB) = 857100 + 0: The total amount of wall time = 226.936036 + 0: The maximum resident set size (KB) = 863436 Test 090 control_csawmgt_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_ras_debug_intel Checking test 091 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.339276 - 0: The maximum resident set size (KB) = 825044 + 0: The total amount of wall time = 148.954988 + 0: The maximum resident set size (KB) = 823328 Test 091 control_ras_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_diag_debug_intel Checking test 092 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.295592 - 0: The maximum resident set size (KB) = 865880 + 0: The total amount of wall time = 153.060422 + 0: The maximum resident set size (KB) = 866196 Test 092 control_diag_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_debug_p8_intel Checking test 093 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.694957 - 0: The maximum resident set size (KB) = 1635444 + 0: The total amount of wall time = 154.603225 + 0: The maximum resident set size (KB) = 1632288 Test 093 control_debug_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_debug_intel Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 958.825967 - 0: The maximum resident set size (KB) = 835248 + 0: The total amount of wall time = 959.033095 + 0: The maximum resident set size (KB) = 832984 Test 094 regional_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_debug_intel Checking test 095 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.390024 - 0: The maximum resident set size (KB) = 1190860 + 0: The total amount of wall time = 271.094735 + 0: The maximum resident set size (KB) = 1193176 Test 095 rap_control_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_debug_intel Checking test 096 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.442847 - 0: The maximum resident set size (KB) = 1195084 + 0: The total amount of wall time = 267.061120 + 0: The maximum resident set size (KB) = 1184896 Test 096 hrrr_control_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_gf_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_gf_debug_intel Checking test 097 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.177237 - 0: The maximum resident set size (KB) = 1201020 + 0: The total amount of wall time = 272.748411 + 0: The maximum resident set size (KB) = 1194040 Test 097 hrrr_gf_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_c3_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_c3_debug_intel Checking test 098 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.916635 - 0: The maximum resident set size (KB) = 1194600 + 0: The total amount of wall time = 274.608745 + 0: The maximum resident set size (KB) = 1191604 Test 098 hrrr_c3_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_unified_drag_suite_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_unified_drag_suite_debug_intel Checking test 099 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.860654 - 0: The maximum resident set size (KB) = 1198888 + 0: The total amount of wall time = 272.440757 + 0: The maximum resident set size (KB) = 1196208 Test 099 rap_unified_drag_suite_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_diag_debug_intel Checking test 100 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.404587 - 0: The maximum resident set size (KB) = 1280192 + 0: The total amount of wall time = 290.116998 + 0: The maximum resident set size (KB) = 1273508 Test 100 rap_diag_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_cires_ugwp_debug_intel Checking test 101 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.350277 - 0: The maximum resident set size (KB) = 1196504 + 0: The total amount of wall time = 284.637692 + 0: The maximum resident set size (KB) = 1193304 Test 101 rap_cires_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_unified_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_unified_ugwp_debug_intel Checking test 102 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.685636 - 0: The maximum resident set size (KB) = 1181000 + 0: The total amount of wall time = 281.728256 + 0: The maximum resident set size (KB) = 1192744 Test 102 rap_unified_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_lndp_debug_intel Checking test 103 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.133836 - 0: The maximum resident set size (KB) = 1199848 + 0: The total amount of wall time = 280.082640 + 0: The maximum resident set size (KB) = 1192352 Test 103 rap_lndp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_progcld_thompson_debug_intel Checking test 104 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.511189 - 0: The maximum resident set size (KB) = 1192672 + 0: The total amount of wall time = 275.930419 + 0: The maximum resident set size (KB) = 1193612 Test 104 rap_progcld_thompson_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_noah_debug_intel Checking test 105 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.666867 - 0: The maximum resident set size (KB) = 1195472 + 0: The total amount of wall time = 275.866323 + 0: The maximum resident set size (KB) = 1186896 Test 105 rap_noah_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_sfcdiff_debug_intel Checking test 106 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.462426 - 0: The maximum resident set size (KB) = 1199436 + 0: The total amount of wall time = 279.154978 + 0: The maximum resident set size (KB) = 1200696 Test 106 rap_sfcdiff_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 449.581971 - 0: The maximum resident set size (KB) = 1188888 + 0: The total amount of wall time = 457.704723 + 0: The maximum resident set size (KB) = 1187336 Test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rrfs_v1beta_debug_intel Checking test 108 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.740968 - 0: The maximum resident set size (KB) = 1189992 + 0: The total amount of wall time = 282.584586 + 0: The maximum resident set size (KB) = 1180620 Test 108 rrfs_v1beta_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_clm_lake_debug_intel Checking test 109 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 347.034881 - 0: The maximum resident set size (KB) = 1196820 + 0: The total amount of wall time = 331.456029 + 0: The maximum resident set size (KB) = 1196800 Test 109 rap_clm_lake_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_flake_debug_intel Checking test 110 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.456389 - 0: The maximum resident set size (KB) = 1203628 + 0: The total amount of wall time = 276.537017 + 0: The maximum resident set size (KB) = 1202272 Test 110 rap_flake_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/gnv1_c96_no_nest_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/gnv1_c96_no_nest_debug_intel Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4204,26 +4205,26 @@ Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.178149 - 0: The maximum resident set size (KB) = 1197108 + 0: The total amount of wall time = 483.143276 + 0: The maximum resident set size (KB) = 1174568 Test 111 gnv1_c96_no_nest_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_wam_debug_intel Checking test 112 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 274.371786 - 0: The maximum resident set size (KB) = 506680 + 0: The total amount of wall time = 278.319369 + 0: The maximum resident set size (KB) = 513804 Test 112 control_wam_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4234,14 +4235,14 @@ Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 218.977231 - 0: The maximum resident set size (KB) = 1147736 + 0: The total amount of wall time = 227.763591 + 0: The maximum resident set size (KB) = 1149428 Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_dyn32_phy32_intel Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4288,14 +4289,14 @@ Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 369.594234 - 0: The maximum resident set size (KB) = 1068152 + 0: The total amount of wall time = 372.317616 + 0: The maximum resident set size (KB) = 1042268 Test 114 rap_control_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_dyn32_phy32_intel Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4342,14 +4343,14 @@ Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.018393 - 0: The maximum resident set size (KB) = 980176 + 0: The total amount of wall time = 192.930699 + 0: The maximum resident set size (KB) = 979608 Test 115 hrrr_control_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_2threads_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_2threads_dyn32_phy32_intel Checking test 116 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4396,14 +4397,14 @@ Checking test 116 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 350.306797 - 0: The maximum resident set size (KB) = 1086240 + 0: The total amount of wall time = 356.141674 + 0: The maximum resident set size (KB) = 1062296 Test 116 rap_2threads_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_2threads_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_2threads_dyn32_phy32_intel Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4450,14 +4451,14 @@ Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.901882 - 0: The maximum resident set size (KB) = 957740 + 0: The total amount of wall time = 178.030121 + 0: The maximum resident set size (KB) = 960184 Test 117 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_decomp_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_decomp_dyn32_phy32_intel Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4504,14 +4505,14 @@ Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.411872 - 0: The maximum resident set size (KB) = 919352 + 0: The total amount of wall time = 201.647493 + 0: The maximum resident set size (KB) = 910184 Test 118 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_restart_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_restart_dyn32_phy32_intel Checking test 119 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4550,28 +4551,28 @@ Checking test 119 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 276.937940 - 0: The maximum resident set size (KB) = 1035684 + 0: The total amount of wall time = 275.412969 + 0: The maximum resident set size (KB) = 1025788 Test 119 rap_restart_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_restart_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_restart_dyn32_phy32_intel Checking test 120 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.811349 - 0: The maximum resident set size (KB) = 915620 + 0: The total amount of wall time = 101.460017 + 0: The maximum resident set size (KB) = 898340 Test 120 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_control_intel Checking test 121 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4587,40 +4588,40 @@ Checking test 121 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 111.059041 - 0: The maximum resident set size (KB) = 1200612 + 0: The total amount of wall time = 112.483801 + 0: The maximum resident set size (KB) = 1176884 Test 121 conus13km_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_2threads_intel Checking test 122 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 44.627261 - 0: The maximum resident set size (KB) = 1112840 + 0: The total amount of wall time = 45.804845 + 0: The maximum resident set size (KB) = 1115484 Test 122 conus13km_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_restart_mismatch_intel Checking test 123 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 62.712974 - 0: The maximum resident set size (KB) = 1106572 + 0: The total amount of wall time = 65.358910 + 0: The maximum resident set size (KB) = 1098872 Test 123 conus13km_restart_mismatch_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_dyn64_phy32_intel Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4667,42 +4668,42 @@ Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.764188 - 0: The maximum resident set size (KB) = 987724 + 0: The total amount of wall time = 242.991211 + 0: The maximum resident set size (KB) = 957908 Test 124 rap_control_dyn64_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_debug_dyn32_phy32_intel Checking test 125 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.302777 - 0: The maximum resident set size (KB) = 1080372 + 0: The total amount of wall time = 276.819473 + 0: The maximum resident set size (KB) = 1064756 Test 125 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_debug_dyn32_phy32_intel Checking test 126 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.065118 - 0: The maximum resident set size (KB) = 1072100 + 0: The total amount of wall time = 266.329690 + 0: The maximum resident set size (KB) = 1073156 Test 126 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_debug_intel Checking test 127 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4716,14 +4717,14 @@ Checking test 127 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 827.833069 - 0: The maximum resident set size (KB) = 1224604 + 0: The total amount of wall time = 836.929510 + 0: The maximum resident set size (KB) = 1219012 Test 127 conus13km_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_debug_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_debug_qr_intel Checking test 128 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4737,81 +4738,81 @@ Checking test 128 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 820.540790 - 0: The maximum resident set size (KB) = 909032 + 0: The total amount of wall time = 838.945047 + 0: The maximum resident set size (KB) = 896440 Test 128 conus13km_debug_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_debug_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_debug_2threads_intel Checking test 129 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 474.401614 - 0: The maximum resident set size (KB) = 1144604 + 0: The total amount of wall time = 465.573948 + 0: The maximum resident set size (KB) = 1151208 Test 129 conus13km_debug_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_radar_tten_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_radar_tten_debug_intel Checking test 130 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 823.465907 - 0: The maximum resident set size (KB) = 1280292 + 0: The total amount of wall time = 832.401629 + 0: The maximum resident set size (KB) = 1284068 Test 130 conus13km_radar_tten_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_dyn64_phy32_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_dyn64_phy32_debug_intel Checking test 131 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.766020 - 0: The maximum resident set size (KB) = 1112456 + 0: The total amount of wall time = 280.953827 + 0: The maximum resident set size (KB) = 1118208 Test 131 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_atm_intel Checking test 132 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 269.587028 - 0: The maximum resident set size (KB) = 734628 + 0: The total amount of wall time = 270.302056 + 0: The maximum resident set size (KB) = 730896 Test 132 hafs_regional_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_atm_thompson_gfdlsf_intel Checking test 133 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 336.310004 - 0: The maximum resident set size (KB) = 1117420 + 0: The total amount of wall time = 340.450242 + 0: The maximum resident set size (KB) = 1070492 Test 133 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_atm_ocn_intel Checking test 134 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4820,14 +4821,14 @@ Checking test 134 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 386.357137 - 0: The maximum resident set size (KB) = 832416 + 0: The total amount of wall time = 394.739290 + 0: The maximum resident set size (KB) = 819692 Test 134 hafs_regional_atm_ocn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_atm_wav_intel Checking test 135 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4836,14 +4837,14 @@ Checking test 135 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 757.707078 - 0: The maximum resident set size (KB) = 847468 + 0: The total amount of wall time = 760.309166 + 0: The maximum resident set size (KB) = 861096 Test 135 hafs_regional_atm_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_atm_ocn_wav_intel Checking test 136 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4854,14 +4855,14 @@ Checking test 136 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 865.942618 - 0: The maximum resident set size (KB) = 881556 + 0: The total amount of wall time = 869.093941 + 0: The maximum resident set size (KB) = 851756 Test 136 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_1nest_atm_intel Checking test 137 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4883,14 +4884,14 @@ 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 = 306.689032 - 0: The maximum resident set size (KB) = 497748 + 0: The total amount of wall time = 306.024043 + 0: The maximum resident set size (KB) = 506620 Test 137 hafs_regional_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_telescopic_2nests_atm_intel Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4899,14 +4900,14 @@ Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 392.559623 - 0: The maximum resident set size (KB) = 516072 + 0: The total amount of wall time = 377.410231 + 0: The maximum resident set size (KB) = 512640 Test 138 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_global_1nest_atm_intel Checking test 139 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4920,15 +4921,15 @@ Checking test 139 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK @@ -4953,14 +4954,14 @@ Checking test 139 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 144.247720 - 0: The maximum resident set size (KB) = 367852 + 0: The total amount of wall time = 151.572522 + 0: The maximum resident set size (KB) = 372680 Test 139 hafs_global_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_global_multiple_4nests_atm_intel Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4987,10 +4988,10 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK @@ -5000,7 +5001,7 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK @@ -5023,7 +5024,7 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK @@ -5042,14 +5043,14 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 425.082140 - 0: The maximum resident set size (KB) = 461800 + 0: The total amount of wall time = 406.365355 + 0: The maximum resident set size (KB) = 454676 Test 140 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_specified_moving_1nest_atm_intel Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5058,14 +5059,14 @@ Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 205.734798 - 0: The maximum resident set size (KB) = 529904 + 0: The total amount of wall time = 204.128496 + 0: The maximum resident set size (KB) = 528220 Test 141 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_storm_following_1nest_atm_intel Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5087,14 +5088,14 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 193.275962 - 0: The maximum resident set size (KB) = 528604 + 0: The total amount of wall time = 193.849667 + 0: The maximum resident set size (KB) = 527984 Test 142 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5103,28 +5104,28 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 231.338458 - 0: The maximum resident set size (KB) = 590768 + 0: The total amount of wall time = 230.172277 + 0: The maximum resident set size (KB) = 585428 Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_global_storm_following_1nest_atm_intel Checking test 144 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 61.728712 - 0: The maximum resident set size (KB) = 404768 + 0: The total amount of wall time = 62.824344 + 0: The maximum resident set size (KB) = 395480 Test 144 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/gnv1_nested_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/gnv1_nested_intel Checking test 145 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5141,12 +5142,12 @@ Checking test 145 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.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.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK @@ -5171,28 +5172,28 @@ Checking test 145 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 227.274648 - 0: The maximum resident set size (KB) = 799472 + 0: The total amount of wall time = 226.659208 + 0: The maximum resident set size (KB) = 796656 Test 145 gnv1_nested_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 722.700917 - 0: The maximum resident set size (KB) = 620196 + 0: The total amount of wall time = 730.866536 + 0: The maximum resident set size (KB) = 541152 Test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5203,162 +5204,197 @@ Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 494.314145 - 0: The maximum resident set size (KB) = 629408 + 0: The total amount of wall time = 499.229735 + 0: The maximum resident set size (KB) = 638172 Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... + Comparing atmf006.nc ............MISSING baseline + Comparing sfcf006.nc ............MISSING baseline + Comparing atm.nest02.f006.nc ............MISSING baseline + Comparing sfc.nest02.f006.nc ............MISSING baseline + Comparing archv.2020_238_18.a ............MISSING baseline + Comparing archs.2020_238_18.a ............MISSING baseline + Comparing 20200825.180000.out_grd.ww3 ............MISSING baseline + Comparing 20200825.180000.out_pnt.ww3 ............MISSING baseline + + 0: The total amount of wall time = 497.506985 + 0: The maximum resident set size (KB) = 709000 + +Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel FAIL Tries: 2 + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc ............MISSING baseline + Comparing sfcf003.nc ............MISSING baseline + Comparing atm.nest02.f003.nc ............MISSING baseline + Comparing sfc.nest02.f003.nc ............MISSING baseline + Comparing ocn_2020_08_25_15.nc ............MISSING baseline + Comparing 20200825.150000.out_grd.ww3 ............MISSING baseline + Comparing 20200825.150000.out_pnt.ww3 ............MISSING baseline + + 0: The total amount of wall time = 374.610719 + 0: The maximum resident set size (KB) = 736936 + +Test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel FAIL Tries: 2 + + baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_docn_intel -Checking test 148 hafs_regional_docn_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_docn_intel +Checking test 150 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.451702 - 0: The maximum resident set size (KB) = 819900 + 0: The total amount of wall time = 360.664086 + 0: The maximum resident set size (KB) = 827168 -Test 148 hafs_regional_docn_intel PASS +Test 150 hafs_regional_docn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_docn_oisst_intel -Checking test 149 hafs_regional_docn_oisst_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_docn_oisst_intel +Checking test 151 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 372.802738 - 0: The maximum resident set size (KB) = 810808 + 0: The total amount of wall time = 368.979218 + 0: The maximum resident set size (KB) = 809844 -Test 149 hafs_regional_docn_oisst_intel PASS +Test 151 hafs_regional_docn_oisst_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_datm_cdeps_intel -Checking test 150 hafs_regional_datm_cdeps_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_datm_cdeps_intel +Checking test 152 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 938.132608 - 0: The maximum resident set size (KB) = 1214144 + 0: The total amount of wall time = 966.477966 + 0: The maximum resident set size (KB) = 1187440 -Test 150 hafs_regional_datm_cdeps_intel PASS +Test 152 hafs_regional_datm_cdeps_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_control_cfsr_intel -Checking test 151 datm_cdeps_control_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_control_cfsr_intel +Checking test 153 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.701592 - 0: The maximum resident set size (KB) = 1116260 + 0: The total amount of wall time = 152.045226 + 0: The maximum resident set size (KB) = 1136264 -Test 151 datm_cdeps_control_cfsr_intel PASS +Test 153 datm_cdeps_control_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_restart_cfsr_intel -Checking test 152 datm_cdeps_restart_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_restart_cfsr_intel +Checking test 154 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 86.293080 - 0: The maximum resident set size (KB) = 1062488 + 0: The total amount of wall time = 88.609697 + 0: The maximum resident set size (KB) = 1080908 -Test 152 datm_cdeps_restart_cfsr_intel PASS +Test 154 datm_cdeps_restart_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_control_gefs_intel -Checking test 153 datm_cdeps_control_gefs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_control_gefs_intel +Checking test 155 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.292290 - 0: The maximum resident set size (KB) = 1001844 + 0: The total amount of wall time = 146.064712 + 0: The maximum resident set size (KB) = 1012268 -Test 153 datm_cdeps_control_gefs_intel PASS +Test 155 datm_cdeps_control_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_iau_gefs_intel -Checking test 154 datm_cdeps_iau_gefs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_iau_gefs_intel +Checking test 156 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.973884 - 0: The maximum resident set size (KB) = 1022084 + 0: The total amount of wall time = 147.388474 + 0: The maximum resident set size (KB) = 1004848 -Test 154 datm_cdeps_iau_gefs_intel PASS +Test 156 datm_cdeps_iau_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_stochy_gefs_intel -Checking test 155 datm_cdeps_stochy_gefs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_stochy_gefs_intel +Checking test 157 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.814148 - 0: The maximum resident set size (KB) = 1009792 + 0: The total amount of wall time = 145.734841 + 0: The maximum resident set size (KB) = 1006324 -Test 155 datm_cdeps_stochy_gefs_intel PASS +Test 157 datm_cdeps_stochy_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_ciceC_cfsr_intel -Checking test 156 datm_cdeps_ciceC_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_ciceC_cfsr_intel +Checking test 158 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.874311 - 0: The maximum resident set size (KB) = 1110376 + 0: The total amount of wall time = 148.888263 + 0: The maximum resident set size (KB) = 1131720 -Test 156 datm_cdeps_ciceC_cfsr_intel PASS +Test 158 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_bulk_cfsr_intel -Checking test 157 datm_cdeps_bulk_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_bulk_cfsr_intel +Checking test 159 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.420535 - 0: The maximum resident set size (KB) = 1124120 + 0: The total amount of wall time = 153.225255 + 0: The maximum resident set size (KB) = 1125356 -Test 157 datm_cdeps_bulk_cfsr_intel PASS +Test 159 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_bulk_gefs_intel -Checking test 158 datm_cdeps_bulk_gefs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_bulk_gefs_intel +Checking test 160 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.374800 - 0: The maximum resident set size (KB) = 1001588 + 0: The total amount of wall time = 146.088172 + 0: The maximum resident set size (KB) = 1011272 -Test 158 datm_cdeps_bulk_gefs_intel PASS +Test 160 datm_cdeps_bulk_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_mx025_cfsr_intel -Checking test 159 datm_cdeps_mx025_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_mx025_cfsr_intel +Checking test 161 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5366,15 +5402,15 @@ Checking test 159 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 376.561317 - 0: The maximum resident set size (KB) = 1046812 + 0: The total amount of wall time = 401.418617 + 0: The maximum resident set size (KB) = 1058428 -Test 159 datm_cdeps_mx025_cfsr_intel PASS +Test 161 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_mx025_gefs_intel -Checking test 160 datm_cdeps_mx025_gefs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_mx025_gefs_intel +Checking test 162 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5382,78 +5418,78 @@ Checking test 160 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 375.433718 - 0: The maximum resident set size (KB) = 1030208 + 0: The total amount of wall time = 398.013795 + 0: The maximum resident set size (KB) = 1018824 -Test 160 datm_cdeps_mx025_gefs_intel PASS +Test 162 datm_cdeps_mx025_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_multiple_files_cfsr_intel -Checking test 161 datm_cdeps_multiple_files_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_multiple_files_cfsr_intel +Checking test 163 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.032179 - 0: The maximum resident set size (KB) = 1112836 + 0: The total amount of wall time = 148.872479 + 0: The maximum resident set size (KB) = 1129428 -Test 161 datm_cdeps_multiple_files_cfsr_intel PASS +Test 163 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_3072x1536_cfsr_intel -Checking test 162 datm_cdeps_3072x1536_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_3072x1536_cfsr_intel +Checking test 164 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 215.767264 - 0: The maximum resident set size (KB) = 2423064 + 0: The total amount of wall time = 223.561828 + 0: The maximum resident set size (KB) = 2438468 -Test 162 datm_cdeps_3072x1536_cfsr_intel PASS +Test 164 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_gfs_intel -Checking test 163 datm_cdeps_gfs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_gfs_intel +Checking test 165 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 214.548347 - 0: The maximum resident set size (KB) = 2414960 + 0: The total amount of wall time = 223.472642 + 0: The maximum resident set size (KB) = 2426704 -Test 163 datm_cdeps_gfs_intel PASS +Test 165 datm_cdeps_gfs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_debug_cfsr_intel -Checking test 164 datm_cdeps_debug_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_debug_cfsr_intel +Checking test 166 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 351.689011 - 0: The maximum resident set size (KB) = 1053472 + 0: The total amount of wall time = 356.828933 + 0: The maximum resident set size (KB) = 1041032 -Test 164 datm_cdeps_debug_cfsr_intel PASS +Test 166 datm_cdeps_debug_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_control_cfsr_faster_intel -Checking test 165 datm_cdeps_control_cfsr_faster_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_control_cfsr_faster_intel +Checking test 167 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.861701 - 0: The maximum resident set size (KB) = 1118932 + 0: The total amount of wall time = 152.071558 + 0: The maximum resident set size (KB) = 1118192 -Test 165 datm_cdeps_control_cfsr_faster_intel PASS +Test 167 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_lnd_gswp3_intel -Checking test 166 datm_cdeps_lnd_gswp3_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_lnd_gswp3_intel +Checking test 168 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5461,15 +5497,15 @@ Checking test 166 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 36.157503 - 0: The maximum resident set size (KB) = 255028 + 0: The total amount of wall time = 36.890047 + 0: The maximum resident set size (KB) = 254664 -Test 166 datm_cdeps_lnd_gswp3_intel PASS +Test 168 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_lnd_era5_intel -Checking test 167 datm_cdeps_lnd_era5_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_lnd_era5_intel +Checking test 169 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5477,15 +5513,15 @@ Checking test 167 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 37.253138 - 0: The maximum resident set size (KB) = 321660 + 0: The total amount of wall time = 38.871443 + 0: The maximum resident set size (KB) = 318204 -Test 167 datm_cdeps_lnd_era5_intel PASS +Test 169 datm_cdeps_lnd_era5_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_lnd_era5_rst_intel -Checking test 168 datm_cdeps_lnd_era5_rst_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_lnd_era5_rst_intel +Checking test 170 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5493,15 +5529,15 @@ Checking test 168 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 21.848750 - 0: The maximum resident set size (KB) = 304104 + 0: The total amount of wall time = 30.342382 + 0: The maximum resident set size (KB) = 319988 -Test 168 datm_cdeps_lnd_era5_rst_intel PASS +Test 170 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_p8_atmlnd_sbs_intel -Checking test 169 control_p8_atmlnd_sbs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_p8_atmlnd_sbs_intel +Checking test 171 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5589,15 +5625,15 @@ Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 243.602271 - 0: The maximum resident set size (KB) = 1587288 + 0: The total amount of wall time = 260.309372 + 0: The maximum resident set size (KB) = 1579432 -Test 169 control_p8_atmlnd_sbs_intel PASS +Test 171 control_p8_atmlnd_sbs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_p8_atmlnd_intel -Checking test 170 control_p8_atmlnd_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_p8_atmlnd_intel +Checking test 172 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5685,15 +5721,15 @@ Checking test 170 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 241.619839 - 0: The maximum resident set size (KB) = 1587148 + 0: The total amount of wall time = 250.147641 + 0: The maximum resident set size (KB) = 1578552 -Test 170 control_p8_atmlnd_intel PASS +Test 172 control_p8_atmlnd_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_restart_p8_atmlnd_intel -Checking test 171 control_restart_p8_atmlnd_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_restart_p8_atmlnd_intel +Checking test 173 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5713,15 +5749,15 @@ Checking test 171 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 125.741520 - 0: The maximum resident set size (KB) = 890224 + 0: The total amount of wall time = 128.499228 + 0: The maximum resident set size (KB) = 888352 -Test 171 control_restart_p8_atmlnd_intel PASS +Test 173 control_restart_p8_atmlnd_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/atmwav_control_noaero_p8_intel -Checking test 172 atmwav_control_noaero_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/atmwav_control_noaero_p8_intel +Checking test 174 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5763,15 +5799,15 @@ Checking test 172 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 92.027616 - 0: The maximum resident set size (KB) = 1653260 + 0: The total amount of wall time = 93.291942 + 0: The maximum resident set size (KB) = 1659324 -Test 172 atmwav_control_noaero_p8_intel PASS +Test 174 atmwav_control_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_atmwav_intel -Checking test 173 control_atmwav_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_atmwav_intel +Checking test 175 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5814,15 +5850,15 @@ Checking test 173 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 87.771960 - 0: The maximum resident set size (KB) = 667356 + 0: The total amount of wall time = 88.372164 + 0: The maximum resident set size (KB) = 667296 -Test 173 control_atmwav_intel PASS +Test 175 control_atmwav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/atmaero_control_p8_intel -Checking test 174 atmaero_control_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/atmaero_control_p8_intel +Checking test 176 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5865,15 +5901,15 @@ Checking test 174 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.778170 - 0: The maximum resident set size (KB) = 3002208 + 0: The total amount of wall time = 232.803413 + 0: The maximum resident set size (KB) = 3003396 -Test 174 atmaero_control_p8_intel PASS +Test 176 atmaero_control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/atmaero_control_p8_rad_intel -Checking test 175 atmaero_control_p8_rad_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/atmaero_control_p8_rad_intel +Checking test 177 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5916,15 +5952,15 @@ Checking test 175 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 272.113141 - 0: The maximum resident set size (KB) = 3094892 + 0: The total amount of wall time = 277.512089 + 0: The maximum resident set size (KB) = 3071440 -Test 175 atmaero_control_p8_rad_intel PASS +Test 177 atmaero_control_p8_rad_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/atmaero_control_p8_rad_micro_intel -Checking test 176 atmaero_control_p8_rad_micro_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/atmaero_control_p8_rad_micro_intel +Checking test 178 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5967,15 +6003,15 @@ Checking test 176 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 292.541096 - 0: The maximum resident set size (KB) = 3042872 + 0: The total amount of wall time = 289.813087 + 0: The maximum resident set size (KB) = 3076800 -Test 176 atmaero_control_p8_rad_micro_intel PASS +Test 178 atmaero_control_p8_rad_micro_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_atmaq_debug_intel -Checking test 177 regional_atmaq_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_atmaq_debug_intel +Checking test 179 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5986,17 +6022,17 @@ Checking test 177 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.phy_data.nc .........OK - Comparing RESTART/20190801.130000.sfc_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1184.392399 - 0: The maximum resident set size (KB) = 4508276 + 0: The total amount of wall time = 1209.075083 + 0: The maximum resident set size (KB) = 4494576 -Test 177 regional_atmaq_debug_intel PASS +Test 179 regional_atmaq_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_c48_gnu -Checking test 178 control_c48_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_c48_gnu +Checking test 180 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6034,15 +6070,15 @@ Checking test 178 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 690.501739 -0: The maximum resident set size (KB) = 792324 +0: The total amount of wall time = 689.606432 +0: The maximum resident set size (KB) = 792240 -Test 178 control_c48_gnu PASS +Test 180 control_c48_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_stochy_gnu -Checking test 179 control_stochy_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_stochy_gnu +Checking test 181 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -6052,15 +6088,15 @@ Checking test 179 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 230.748509 - 0: The maximum resident set size (KB) = 548028 + 0: The total amount of wall time = 226.278727 + 0: The maximum resident set size (KB) = 550544 -Test 179 control_stochy_gnu PASS +Test 181 control_stochy_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_ras_gnu -Checking test 180 control_ras_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_ras_gnu +Checking test 182 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6070,15 +6106,15 @@ Checking test 180 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 282.266870 - 0: The maximum resident set size (KB) = 555260 + 0: The total amount of wall time = 289.642160 + 0: The maximum resident set size (KB) = 558528 -Test 180 control_ras_gnu PASS +Test 182 control_ras_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_p8_gnu -Checking test 181 control_p8_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_p8_gnu +Checking test 183 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6124,15 +6160,15 @@ Checking test 181 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.758144 - 0: The maximum resident set size (KB) = 1307188 + 0: The total amount of wall time = 279.317396 + 0: The maximum resident set size (KB) = 1307328 -Test 181 control_p8_gnu PASS +Test 183 control_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_p8_ugwpv1_gnu -Checking test 182 control_p8_ugwpv1_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_p8_ugwpv1_gnu +Checking test 184 control_p8_ugwpv1_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6178,15 +6214,15 @@ Checking test 182 control_p8_ugwpv1_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 274.348251 - 0: The maximum resident set size (KB) = 1309688 + 0: The total amount of wall time = 281.326964 + 0: The maximum resident set size (KB) = 1313696 -Test 182 control_p8_ugwpv1_gnu PASS +Test 184 control_p8_ugwpv1_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_flake_gnu -Checking test 183 control_flake_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_flake_gnu +Checking test 185 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6196,15 +6232,15 @@ Checking test 183 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 344.862100 - 0: The maximum resident set size (KB) = 599024 + 0: The total amount of wall time = 341.506633 + 0: The maximum resident set size (KB) = 599120 -Test 183 control_flake_gnu PASS +Test 185 control_flake_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_gnu -Checking test 184 rap_control_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_gnu +Checking test 186 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6250,15 +6286,15 @@ Checking test 184 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 687.179083 - 0: The maximum resident set size (KB) = 897392 + 0: The total amount of wall time = 696.970311 + 0: The maximum resident set size (KB) = 895756 -Test 184 rap_control_gnu PASS +Test 186 rap_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_decomp_gnu -Checking test 185 rap_decomp_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_decomp_gnu +Checking test 187 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6304,15 +6340,15 @@ Checking test 185 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 704.479407 - 0: The maximum resident set size (KB) = 901924 + 0: The total amount of wall time = 704.284708 + 0: The maximum resident set size (KB) = 905032 -Test 185 rap_decomp_gnu PASS +Test 187 rap_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_2threads_gnu -Checking test 186 rap_2threads_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_2threads_gnu +Checking test 188 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6358,15 +6394,15 @@ Checking test 186 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 618.324063 - 0: The maximum resident set size (KB) = 975248 + 0: The total amount of wall time = 629.291812 + 0: The maximum resident set size (KB) = 980544 -Test 186 rap_2threads_gnu PASS +Test 188 rap_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_restart_gnu -Checking test 187 rap_restart_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_restart_gnu +Checking test 189 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -6404,15 +6440,15 @@ Checking test 187 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 356.056805 - 0: The maximum resident set size (KB) = 622888 + 0: The total amount of wall time = 355.792175 + 0: The maximum resident set size (KB) = 625748 -Test 187 rap_restart_gnu PASS +Test 189 rap_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_sfcdiff_gnu -Checking test 188 rap_sfcdiff_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_sfcdiff_gnu +Checking test 190 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6458,15 +6494,15 @@ Checking test 188 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 690.024779 - 0: The maximum resident set size (KB) = 896868 + 0: The total amount of wall time = 706.586217 + 0: The maximum resident set size (KB) = 894412 -Test 188 rap_sfcdiff_gnu PASS +Test 190 rap_sfcdiff_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_sfcdiff_decomp_gnu -Checking test 189 rap_sfcdiff_decomp_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_sfcdiff_decomp_gnu +Checking test 191 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6512,15 +6548,15 @@ Checking test 189 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 697.220816 - 0: The maximum resident set size (KB) = 895192 + 0: The total amount of wall time = 700.261473 + 0: The maximum resident set size (KB) = 896308 -Test 189 rap_sfcdiff_decomp_gnu PASS +Test 191 rap_sfcdiff_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_sfcdiff_restart_gnu -Checking test 190 rap_sfcdiff_restart_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_sfcdiff_restart_gnu +Checking test 192 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -6558,15 +6594,15 @@ Checking test 190 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 512.801755 - 0: The maximum resident set size (KB) = 627740 + 0: The total amount of wall time = 526.105044 + 0: The maximum resident set size (KB) = 629696 -Test 190 rap_sfcdiff_restart_gnu PASS +Test 192 rap_sfcdiff_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_gnu -Checking test 191 hrrr_control_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_gnu +Checking test 193 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6612,15 +6648,15 @@ Checking test 191 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 347.501404 - 0: The maximum resident set size (KB) = 888900 + 0: The total amount of wall time = 352.672988 + 0: The maximum resident set size (KB) = 891060 -Test 191 hrrr_control_gnu PASS +Test 193 hrrr_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_noqr_gnu -Checking test 192 hrrr_control_noqr_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_noqr_gnu +Checking test 194 hrrr_control_noqr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6666,15 +6702,15 @@ Checking test 192 hrrr_control_noqr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 349.938599 - 0: The maximum resident set size (KB) = 884836 + 0: The total amount of wall time = 350.167569 + 0: The maximum resident set size (KB) = 879464 -Test 192 hrrr_control_noqr_gnu PASS +Test 194 hrrr_control_noqr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_2threads_gnu -Checking test 193 hrrr_control_2threads_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_2threads_gnu +Checking test 195 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6720,15 +6756,15 @@ Checking test 193 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 303.789459 - 0: The maximum resident set size (KB) = 984000 + 0: The total amount of wall time = 309.194051 + 0: The maximum resident set size (KB) = 975212 -Test 193 hrrr_control_2threads_gnu PASS +Test 195 hrrr_control_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_decomp_gnu -Checking test 194 hrrr_control_decomp_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_decomp_gnu +Checking test 196 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6774,43 +6810,43 @@ Checking test 194 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 344.542549 - 0: The maximum resident set size (KB) = 891832 + 0: The total amount of wall time = 353.501232 + 0: The maximum resident set size (KB) = 897772 -Test 194 hrrr_control_decomp_gnu PASS +Test 196 hrrr_control_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_restart_gnu -Checking test 195 hrrr_control_restart_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_restart_gnu +Checking test 197 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 206.794691 - 0: The maximum resident set size (KB) = 615660 + 0: The total amount of wall time = 184.000744 + 0: The maximum resident set size (KB) = 612376 -Test 195 hrrr_control_restart_gnu PASS +Test 197 hrrr_control_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_restart_noqr_gnu -Checking test 196 hrrr_control_restart_noqr_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_restart_noqr_gnu +Checking test 198 hrrr_control_restart_noqr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 180.880943 - 0: The maximum resident set size (KB) = 703748 + 0: The total amount of wall time = 183.313754 + 0: The maximum resident set size (KB) = 704240 -Test 196 hrrr_control_restart_noqr_gnu PASS +Test 198 hrrr_control_restart_noqr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rrfs_v1beta_gnu -Checking test 197 rrfs_v1beta_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rrfs_v1beta_gnu +Checking test 199 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6856,225 +6892,225 @@ Checking test 197 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 675.327665 - 0: The maximum resident set size (KB) = 897220 + 0: The total amount of wall time = 686.679627 + 0: The maximum resident set size (KB) = 895988 -Test 197 rrfs_v1beta_gnu PASS +Test 199 rrfs_v1beta_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_diag_debug_gnu -Checking test 198 control_diag_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_diag_debug_gnu +Checking test 200 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 85.591753 - 0: The maximum resident set size (KB) = 600112 + 0: The total amount of wall time = 89.043211 + 0: The maximum resident set size (KB) = 590932 -Test 198 control_diag_debug_gnu PASS +Test 200 control_diag_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_debug_gnu -Checking test 199 regional_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_debug_gnu +Checking test 201 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 436.488779 - 0: The maximum resident set size (KB) = 589412 + 0: The total amount of wall time = 440.630302 + 0: The maximum resident set size (KB) = 594584 -Test 199 regional_debug_gnu PASS +Test 201 regional_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_debug_gnu -Checking test 200 rap_control_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_debug_gnu +Checking test 202 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 138.331064 - 0: The maximum resident set size (KB) = 917116 + 0: The total amount of wall time = 141.361404 + 0: The maximum resident set size (KB) = 911352 -Test 200 rap_control_debug_gnu PASS +Test 202 rap_control_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_debug_gnu -Checking test 201 hrrr_control_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_debug_gnu +Checking test 203 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 136.765628 - 0: The maximum resident set size (KB) = 907164 + 0: The total amount of wall time = 140.185637 + 0: The maximum resident set size (KB) = 898932 -Test 201 hrrr_control_debug_gnu PASS +Test 203 hrrr_control_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_gf_debug_gnu -Checking test 202 hrrr_gf_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_gf_debug_gnu +Checking test 204 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 141.486970 - 0: The maximum resident set size (KB) = 908416 + 0: The total amount of wall time = 140.812614 + 0: The maximum resident set size (KB) = 905844 -Test 202 hrrr_gf_debug_gnu PASS +Test 204 hrrr_gf_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_c3_debug_gnu -Checking test 203 hrrr_c3_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_c3_debug_gnu +Checking test 205 hrrr_c3_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.787285 - 0: The maximum resident set size (KB) = 912832 + 0: The total amount of wall time = 143.355771 + 0: The maximum resident set size (KB) = 903104 -Test 203 hrrr_c3_debug_gnu PASS +Test 205 hrrr_c3_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_diag_debug_gnu -Checking test 204 rap_diag_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_diag_debug_gnu +Checking test 206 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.845575 - 0: The maximum resident set size (KB) = 996284 + 0: The total amount of wall time = 156.325696 + 0: The maximum resident set size (KB) = 991408 -Test 204 rap_diag_debug_gnu PASS +Test 206 rap_diag_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 205 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_noah_sfcdiff_cires_ugwp_debug_gnu +Checking test 207 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 223.903762 - 0: The maximum resident set size (KB) = 912860 + 0: The total amount of wall time = 220.670815 + 0: The maximum resident set size (KB) = 908296 -Test 205 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS +Test 207 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_progcld_thompson_debug_gnu -Checking test 206 rap_progcld_thompson_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_progcld_thompson_debug_gnu +Checking test 208 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.529806 - 0: The maximum resident set size (KB) = 912408 + 0: The total amount of wall time = 140.361184 + 0: The maximum resident set size (KB) = 907332 -Test 206 rap_progcld_thompson_debug_gnu PASS +Test 208 rap_progcld_thompson_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rrfs_v1beta_debug_gnu -Checking test 207 rrfs_v1beta_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rrfs_v1beta_debug_gnu +Checking test 209 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.330026 - 0: The maximum resident set size (KB) = 913820 + 0: The total amount of wall time = 140.443841 + 0: The maximum resident set size (KB) = 903984 -Test 207 rrfs_v1beta_debug_gnu PASS +Test 209 rrfs_v1beta_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_ras_debug_gnu -Checking test 208 control_ras_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_ras_debug_gnu +Checking test 210 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 81.523225 - 0: The maximum resident set size (KB) = 549840 + 0: The total amount of wall time = 80.829023 + 0: The maximum resident set size (KB) = 543520 -Test 208 control_ras_debug_gnu PASS +Test 210 control_ras_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_stochy_debug_gnu -Checking test 209 control_stochy_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_stochy_debug_gnu +Checking test 211 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 118.851537 - 0: The maximum resident set size (KB) = 545568 + 0: The total amount of wall time = 125.716882 + 0: The maximum resident set size (KB) = 536964 -Test 209 control_stochy_debug_gnu PASS +Test 211 control_stochy_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_debug_p8_gnu -Checking test 210 control_debug_p8_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_debug_p8_gnu +Checking test 212 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 88.899344 - 0: The maximum resident set size (KB) = 1298392 + 0: The total amount of wall time = 94.867473 + 0: The maximum resident set size (KB) = 1296440 -Test 210 control_debug_p8_gnu PASS +Test 212 control_debug_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_flake_debug_gnu -Checking test 211 rap_flake_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_flake_debug_gnu +Checking test 213 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.790214 - 0: The maximum resident set size (KB) = 910492 + 0: The total amount of wall time = 146.835172 + 0: The maximum resident set size (KB) = 910236 -Test 211 rap_flake_debug_gnu PASS +Test 213 rap_flake_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_clm_lake_debug_gnu -Checking test 212 rap_clm_lake_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_clm_lake_debug_gnu +Checking test 214 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.425588 - 0: The maximum resident set size (KB) = 914856 + 0: The total amount of wall time = 161.667168 + 0: The maximum resident set size (KB) = 907580 -Test 212 rap_clm_lake_debug_gnu PASS +Test 214 rap_clm_lake_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/gnv1_c96_no_nest_debug_gnu -Checking test 213 gnv1_c96_no_nest_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/gnv1_c96_no_nest_debug_gnu +Checking test 215 gnv1_c96_no_nest_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -7114,27 +7150,27 @@ Checking test 213 gnv1_c96_no_nest_debug_gnu results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.892709 - 0: The maximum resident set size (KB) = 925864 + 0: The total amount of wall time = 247.535232 + 0: The maximum resident set size (KB) = 918868 -Test 213 gnv1_c96_no_nest_debug_gnu PASS +Test 215 gnv1_c96_no_nest_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_wam_debug_gnu -Checking test 214 control_wam_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_wam_debug_gnu +Checking test 216 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 136.572735 - 0: The maximum resident set size (KB) = 238856 + 0: The total amount of wall time = 138.158297 + 0: The maximum resident set size (KB) = 238372 -Test 214 control_wam_debug_gnu PASS +Test 216 control_wam_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_dyn32_phy32_gnu -Checking test 215 rap_control_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_dyn32_phy32_gnu +Checking test 217 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7180,15 +7216,15 @@ Checking test 215 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 700.607789 - 0: The maximum resident set size (KB) = 748096 + 0: The total amount of wall time = 712.306780 + 0: The maximum resident set size (KB) = 753068 -Test 215 rap_control_dyn32_phy32_gnu PASS +Test 217 rap_control_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_dyn32_phy32_gnu -Checking test 216 hrrr_control_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_dyn32_phy32_gnu +Checking test 218 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7234,15 +7270,15 @@ Checking test 216 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 354.967375 - 0: The maximum resident set size (KB) = 745552 + 0: The total amount of wall time = 360.609111 + 0: The maximum resident set size (KB) = 745036 -Test 216 hrrr_control_dyn32_phy32_gnu PASS +Test 218 hrrr_control_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_2threads_dyn32_phy32_gnu -Checking test 217 rap_2threads_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_2threads_dyn32_phy32_gnu +Checking test 219 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7288,15 +7324,15 @@ Checking test 217 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 627.363216 - 0: The maximum resident set size (KB) = 807500 + 0: The total amount of wall time = 645.566081 + 0: The maximum resident set size (KB) = 808872 -Test 217 rap_2threads_dyn32_phy32_gnu PASS +Test 219 rap_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 218 hrrr_control_2threads_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_2threads_dyn32_phy32_gnu +Checking test 220 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7342,15 +7378,15 @@ Checking test 218 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 307.677369 - 0: The maximum resident set size (KB) = 805652 + 0: The total amount of wall time = 315.144560 + 0: The maximum resident set size (KB) = 810984 -Test 218 hrrr_control_2threads_dyn32_phy32_gnu PASS +Test 220 hrrr_control_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 219 hrrr_control_decomp_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_decomp_dyn32_phy32_gnu +Checking test 221 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7396,15 +7432,15 @@ Checking test 219 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 350.498247 - 0: The maximum resident set size (KB) = 746864 + 0: The total amount of wall time = 358.601418 + 0: The maximum resident set size (KB) = 749152 -Test 219 hrrr_control_decomp_dyn32_phy32_gnu PASS +Test 221 hrrr_control_decomp_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_restart_dyn32_phy32_gnu -Checking test 220 rap_restart_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_restart_dyn32_phy32_gnu +Checking test 222 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -7442,29 +7478,29 @@ Checking test 220 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 526.010091 - 0: The maximum resident set size (KB) = 594528 + 0: The total amount of wall time = 535.434834 + 0: The maximum resident set size (KB) = 600292 -Test 220 rap_restart_dyn32_phy32_gnu PASS +Test 222 rap_restart_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_restart_dyn32_phy32_gnu -Checking test 221 hrrr_control_restart_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_restart_dyn32_phy32_gnu +Checking test 223 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 183.136403 - 0: The maximum resident set size (KB) = 579332 + 0: The total amount of wall time = 186.422770 + 0: The maximum resident set size (KB) = 580968 -Test 221 hrrr_control_restart_dyn32_phy32_gnu PASS +Test 223 hrrr_control_restart_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_control_gnu -Checking test 222 conus13km_control_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_control_gnu +Checking test 224 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -7479,41 +7515,41 @@ Checking test 222 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 242.858742 - 0: The maximum resident set size (KB) = 898544 + 0: The total amount of wall time = 246.470292 + 0: The maximum resident set size (KB) = 898728 -Test 222 conus13km_control_gnu PASS +Test 224 conus13km_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_2threads_gnu -Checking test 223 conus13km_2threads_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_2threads_gnu +Checking test 225 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 99.977806 - 0: The maximum resident set size (KB) = 932828 + 0: The total amount of wall time = 102.609579 + 0: The maximum resident set size (KB) = 934324 -Test 223 conus13km_2threads_gnu PASS +Test 225 conus13km_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_restart_mismatch_gnu -Checking test 224 conus13km_restart_mismatch_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_restart_mismatch_gnu +Checking test 226 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 127.585358 - 0: The maximum resident set size (KB) = 599856 + 0: The total amount of wall time = 129.486171 + 0: The maximum resident set size (KB) = 599476 -Test 224 conus13km_restart_mismatch_gnu PASS +Test 226 conus13km_restart_mismatch_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_dyn64_phy32_gnu -Checking test 225 rap_control_dyn64_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_dyn64_phy32_gnu +Checking test 227 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7559,43 +7595,43 @@ Checking test 225 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 406.978254 - 0: The maximum resident set size (KB) = 787972 + 0: The total amount of wall time = 416.245505 + 0: The maximum resident set size (KB) = 783716 -Test 225 rap_control_dyn64_phy32_gnu PASS +Test 227 rap_control_dyn64_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_debug_dyn32_phy32_gnu -Checking test 226 rap_control_debug_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_debug_dyn32_phy32_gnu +Checking test 228 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.251377 - 0: The maximum resident set size (KB) = 766808 + 0: The total amount of wall time = 143.725667 + 0: The maximum resident set size (KB) = 765232 -Test 226 rap_control_debug_dyn32_phy32_gnu PASS +Test 228 rap_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_debug_dyn32_phy32_gnu -Checking test 227 hrrr_control_debug_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_debug_dyn32_phy32_gnu +Checking test 229 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 136.165440 - 0: The maximum resident set size (KB) = 761500 + 0: The total amount of wall time = 140.702085 + 0: The maximum resident set size (KB) = 758640 -Test 227 hrrr_control_debug_dyn32_phy32_gnu PASS +Test 229 hrrr_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_debug_gnu -Checking test 228 conus13km_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_debug_gnu +Checking test 230 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -7608,15 +7644,15 @@ Checking test 228 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 420.828286 - 0: The maximum resident set size (KB) = 913816 + 0: The total amount of wall time = 420.348607 + 0: The maximum resident set size (KB) = 917172 -Test 228 conus13km_debug_gnu PASS +Test 230 conus13km_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_debug_qr_gnu -Checking test 229 conus13km_debug_qr_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_debug_qr_gnu +Checking test 231 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -7629,57 +7665,57 @@ Checking test 229 conus13km_debug_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 416.362698 - 0: The maximum resident set size (KB) = 633804 + 0: The total amount of wall time = 418.634999 + 0: The maximum resident set size (KB) = 635016 -Test 229 conus13km_debug_qr_gnu PASS +Test 231 conus13km_debug_qr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_debug_2threads_gnu -Checking test 230 conus13km_debug_2threads_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_debug_2threads_gnu +Checking test 232 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 254.835416 - 0: The maximum resident set size (KB) = 955348 + 0: The total amount of wall time = 253.376218 + 0: The maximum resident set size (KB) = 949180 -Test 230 conus13km_debug_2threads_gnu PASS +Test 232 conus13km_debug_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_radar_tten_debug_gnu -Checking test 231 conus13km_radar_tten_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_radar_tten_debug_gnu +Checking test 233 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 414.091288 - 0: The maximum resident set size (KB) = 983228 + 0: The total amount of wall time = 427.949399 + 0: The maximum resident set size (KB) = 982664 -Test 231 conus13km_radar_tten_debug_gnu PASS +Test 233 conus13km_radar_tten_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_dyn64_phy32_debug_gnu -Checking test 232 rap_control_dyn64_phy32_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_dyn64_phy32_debug_gnu +Checking test 234 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.835480 - 0: The maximum resident set size (KB) = 793460 + 0: The total amount of wall time = 146.538305 + 0: The maximum resident set size (KB) = 788672 -Test 232 rap_control_dyn64_phy32_debug_gnu PASS +Test 234 rap_control_dyn64_phy32_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_p8_gnu -Checking test 233 cpld_control_p8_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_p8_gnu +Checking test 235 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7743,15 +7779,15 @@ Checking test 233 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 629.347814 - 0: The maximum resident set size (KB) = 1505988 + 0: The total amount of wall time = 659.671746 + 0: The maximum resident set size (KB) = 1503112 -Test 233 cpld_control_p8_gnu PASS +Test 235 cpld_control_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_nowave_noaero_p8_gnu -Checking test 234 cpld_control_nowave_noaero_p8_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_nowave_noaero_p8_gnu +Checking test 236 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7812,15 +7848,15 @@ Checking test 234 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 381.000424 - 0: The maximum resident set size (KB) = 1399652 + 0: The total amount of wall time = 390.832412 + 0: The maximum resident set size (KB) = 1403464 -Test 234 cpld_control_nowave_noaero_p8_gnu PASS +Test 236 cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_debug_p8_gnu -Checking test 235 cpld_debug_p8_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_debug_p8_gnu +Checking test 237 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7872,15 +7908,15 @@ Checking test 235 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 357.145357 - 0: The maximum resident set size (KB) = 1515704 + 0: The total amount of wall time = 364.674151 + 0: The maximum resident set size (KB) = 1513628 -Test 235 cpld_debug_p8_gnu PASS +Test 237 cpld_debug_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_pdlib_p8_gnu -Checking test 236 cpld_control_pdlib_p8_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_pdlib_p8_gnu +Checking test 238 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7943,15 +7979,15 @@ Checking test 236 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1309.665519 - 0: The maximum resident set size (KB) = 1377320 + 0: The total amount of wall time = 1323.783885 + 0: The maximum resident set size (KB) = 1374992 -Test 236 cpld_control_pdlib_p8_gnu PASS +Test 238 cpld_control_pdlib_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_debug_pdlib_p8_gnu -Checking test 237 cpld_debug_pdlib_p8_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_debug_pdlib_p8_gnu +Checking test 239 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -8002,25 +8038,30 @@ Checking test 237 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 752.509817 - 0: The maximum resident set size (KB) = 1384600 + 0: The total amount of wall time = 772.791319 + 0: The maximum resident set size (KB) = 1388880 -Test 237 cpld_debug_pdlib_p8_gnu PASS +Test 239 cpld_debug_pdlib_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_control_cfsr_gnu -Checking test 238 datm_cdeps_control_cfsr_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_control_cfsr_gnu +Checking test 240 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.080782 - 0: The maximum resident set size (KB) = 696560 + 0: The total amount of wall time = 170.240522 + 0: The maximum resident set size (KB) = 696524 -Test 238 datm_cdeps_control_cfsr_gnu PASS +Test 240 datm_cdeps_control_cfsr_gnu PASS +FAILED TESTS: +148 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel failed in check_result +hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel 148 failed in run_test +149 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel failed in check_result +hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel 149 failed in run_test -REGRESSION TEST WAS SUCCESSFUL -Wed Jan 31 21:39:10 UTC 2024 -Elapsed time: 03h:29m:58s. Have a nice day! +REGRESSION TEST FAILED +Fri Feb 2 11:19:23 UTC 2024 +Elapsed time: 16h:47m:29s. Have a nice day! From 73e7a1ab2f647e0ae1dac48970e84cb14ed0497b Mon Sep 17 00:00:00 2001 From: zach1221 Date: Fri, 2 Feb 2024 14:12:39 +0000 Subject: [PATCH 48/63] add jet RT logs: passed --- tests/logs/RegressionTests_jet.log | 1142 ++++++++++++++-------------- 1 file changed, 557 insertions(+), 585 deletions(-) diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index d174eb44ac..9daf827b69 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,57 +1,57 @@ -Wed Jan 31 18:10:43 UTC 2024 +Fri Feb 2 02:59:08 UTC 2024 Start Regression test -Testing UFSWM Hash: 2d9959c5ab71b771c51e1d5995792df7c00e0a9c +Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 7437f73df4b43e8924b6493c5067544af097ad78 CMEPS-interface/CMEPS (cmeps_v0.4.1-1412-g7437f73) + eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b7587dfeacd95f43da0595dee42b78a2d78653e9 FV3 (remotes/origin/feature/hafsv2_baseline_with_ssc) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atm_debug_dyn32_intel elapsed time 380 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1963 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1776 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1756 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1934 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1828 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1749 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1809 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 234 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 479 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 478 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 97 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1777 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 1925 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 311 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 2475 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1781 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 255 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1784 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1843 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1860 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1908 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 295 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 2090 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 327 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 2900 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1807 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 357 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 2815 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 363 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 5519 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2206 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 276 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1742 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_debug_dyn32_intel elapsed time 415 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1961 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1789 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1748 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 1925 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1814 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1806 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1793 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile datm_cdeps_debug_intel elapsed time 218 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 484 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 482 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 108 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 1798 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 1937 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 260 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 2458 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1717 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 264 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 1733 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1852 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1909 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1843 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 327 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1982 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 316 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 2717 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 2117 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 340 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 3010 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 320 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 5493 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2183 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 292 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1689 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_p8_mixedmode_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -116,14 +116,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 524.178126 - 0: The maximum resident set size (KB) = 1767836 + 0: The total amount of wall time = 463.520817 + 0: The maximum resident set size (KB) = 1755576 Test 001 cpld_control_p8_mixedmode_intel PASS Tries: 2 baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -187,14 +187,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1364.628817 - 0: The maximum resident set size (KB) = 1638932 + 0: The total amount of wall time = 1222.635991 + 0: The maximum resident set size (KB) = 1650932 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_gfsv17_iau_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -240,14 +240,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1312.160240 - 0: The maximum resident set size (KB) = 1852296 + 0: The total amount of wall time = 1259.885443 + 0: The maximum resident set size (KB) = 1853988 -Test 003 cpld_control_gfsv17_iau_intel PASS Tries: 2 +Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_restart_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -300,14 +300,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 591.638025 - 0: The maximum resident set size (KB) = 974452 + 0: The total amount of wall time = 581.997203 + 0: The maximum resident set size (KB) = 979364 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_mpi_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -371,14 +371,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1524.862280 - 0: The maximum resident set size (KB) = 1603048 + 0: The total amount of wall time = 1427.187177 + 0: The maximum resident set size (KB) = 1611608 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_debug_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -430,14 +430,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1795.992555 - 0: The maximum resident set size (KB) = 1643380 + 0: The total amount of wall time = 1795.489020 + 0: The maximum resident set size (KB) = 1647320 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -502,14 +502,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 499.783295 - 0: The maximum resident set size (KB) = 1774752 + 0: The total amount of wall time = 469.644071 + 0: The maximum resident set size (KB) = 1810460 Test 007 cpld_control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_restart_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -562,14 +562,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 386.282771 - 0: The maximum resident set size (KB) = 1703408 + 0: The total amount of wall time = 259.039850 + 0: The maximum resident set size (KB) = 1690004 Test 008 cpld_restart_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_qr_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -634,14 +634,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 555.834238 - 0: The maximum resident set size (KB) = 1821296 + 0: The total amount of wall time = 460.471477 + 0: The maximum resident set size (KB) = 1819960 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_restart_qr_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -694,14 +694,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 312.044650 - 0: The maximum resident set size (KB) = 1711752 + 0: The total amount of wall time = 270.933835 + 0: The maximum resident set size (KB) = 1713396 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_2threads_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -754,14 +754,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 451.919723 - 0: The maximum resident set size (KB) = 2183336 + 0: The total amount of wall time = 438.262886 + 0: The maximum resident set size (KB) = 2193336 Test 011 cpld_2threads_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_decomp_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -814,14 +814,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 479.314873 - 0: The maximum resident set size (KB) = 1789764 + 0: The total amount of wall time = 448.656935 + 0: The maximum resident set size (KB) = 1791668 Test 012 cpld_decomp_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_mpi_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -874,14 +874,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 410.745604 - 0: The maximum resident set size (KB) = 1749696 + 0: The total amount of wall time = 385.809636 + 0: The maximum resident set size (KB) = 1753172 Test 013 cpld_mpi_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_ciceC_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -946,14 +946,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 498.142513 - 0: The maximum resident set size (KB) = 1795776 + 0: The total amount of wall time = 443.765499 + 0: The maximum resident set size (KB) = 1797500 Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_s2sa_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_s2sa_p8_intel Checking test 015 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1004,14 +1004,14 @@ Checking test 015 cpld_s2sa_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 528.603188 - 0: The maximum resident set size (KB) = 1776608 + 0: The total amount of wall time = 437.842078 + 0: The maximum resident set size (KB) = 1764720 Test 015 cpld_s2sa_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_noaero_p8_intel Checking test 016 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1075,14 +1075,14 @@ Checking test 016 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 375.327470 - 0: The maximum resident set size (KB) = 1634860 + 0: The total amount of wall time = 350.190339 + 0: The maximum resident set size (KB) = 1637648 Test 016 cpld_control_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_nowave_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_nowave_noaero_p8_intel Checking test 017 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1144,14 +1144,14 @@ Checking test 017 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 363.269966 - 0: The maximum resident set size (KB) = 1692640 + 0: The total amount of wall time = 335.962766 + 0: The maximum resident set size (KB) = 1687680 Test 017 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_debug_p8_intel Checking test 018 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1204,14 +1204,14 @@ Checking test 018 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 636.492860 - 0: The maximum resident set size (KB) = 1817748 + 0: The total amount of wall time = 627.323450 + 0: The maximum resident set size (KB) = 1817464 Test 018 cpld_debug_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_debug_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_debug_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_debug_noaero_p8_intel Checking test 019 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1263,14 +1263,14 @@ Checking test 019 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 431.218863 - 0: The maximum resident set size (KB) = 1649412 + 0: The total amount of wall time = 426.347638 + 0: The maximum resident set size (KB) = 1652584 Test 019 cpld_debug_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_noaero_p8_agrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_noaero_p8_agrid_intel Checking test 020 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1332,14 +1332,14 @@ Checking test 020 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 478.659042 - 0: The maximum resident set size (KB) = 1684992 + 0: The total amount of wall time = 329.102717 + 0: The maximum resident set size (KB) = 1699500 Test 020 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_c48_intel Checking test 021 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1389,14 +1389,14 @@ Checking test 021 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 805.975811 - 0: The maximum resident set size (KB) = 2781100 + 0: The total amount of wall time = 763.556590 + 0: The maximum resident set size (KB) = 2776692 Test 021 cpld_control_c48_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_p8_faster_intel Checking test 022 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1461,14 +1461,14 @@ Checking test 022 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 457.974085 - 0: The maximum resident set size (KB) = 1796108 + 0: The total amount of wall time = 439.507124 + 0: The maximum resident set size (KB) = 1797232 Test 022 cpld_control_p8_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_pdlib_p8_intel Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1532,14 +1532,14 @@ Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1359.913008 - 0: The maximum resident set size (KB) = 1658788 + 0: The total amount of wall time = 1235.579869 + 0: The maximum resident set size (KB) = 1664632 Test 023 cpld_control_pdlib_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_restart_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_restart_pdlib_p8_intel Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1591,14 +1591,14 @@ Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 618.823749 - 0: The maximum resident set size (KB) = 1022604 + 0: The total amount of wall time = 580.964921 + 0: The maximum resident set size (KB) = 1025604 Test 024 cpld_restart_pdlib_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_mpi_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_mpi_pdlib_p8_intel Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1662,14 +1662,14 @@ Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1440.228777 - 0: The maximum resident set size (KB) = 1637148 + 0: The total amount of wall time = 1475.413872 + 0: The maximum resident set size (KB) = 1636344 -Test 025 cpld_mpi_pdlib_p8_intel PASS Tries: 2 +Test 025 cpld_mpi_pdlib_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_debug_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_debug_pdlib_p8_intel Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1721,14 +1721,14 @@ Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1962.888626 - 0: The maximum resident set size (KB) = 1675420 + 0: The total amount of wall time = 2292.234248 + 0: The maximum resident set size (KB) = 1669456 Test 026 cpld_debug_pdlib_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_flake_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_flake_intel Checking test 027 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1739,14 +1739,14 @@ Checking test 027 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 296.969628 - 0: The maximum resident set size (KB) = 644176 + 0: The total amount of wall time = 276.636373 + 0: The maximum resident set size (KB) = 649344 Test 027 control_flake_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_CubedSphereGrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_CubedSphereGrid_intel Checking test 028 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1773,36 +1773,36 @@ Checking test 028 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 200.410002 - 0: The maximum resident set size (KB) = 599808 + 0: The total amount of wall time = 227.954957 + 0: The maximum resident set size (KB) = 598860 Test 028 control_CubedSphereGrid_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_CubedSphereGrid_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_CubedSphereGrid_parallel_intel Checking test 029 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 206.012331 - 0: The maximum resident set size (KB) = 598568 + 0: The total amount of wall time = 242.033098 + 0: The maximum resident set size (KB) = 595136 Test 029 control_CubedSphereGrid_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_latlon_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_latlon_intel Checking test 030 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1813,14 +1813,14 @@ Checking test 030 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 204.956970 - 0: The maximum resident set size (KB) = 594220 + 0: The total amount of wall time = 239.853498 + 0: The maximum resident set size (KB) = 593380 Test 030 control_latlon_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_wrtGauss_netcdf_parallel_intel Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1831,14 +1831,14 @@ Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 213.684477 - 0: The maximum resident set size (KB) = 596448 + 0: The total amount of wall time = 232.636730 + 0: The maximum resident set size (KB) = 597008 Test 031 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_c48_intel Checking test 032 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1877,14 +1877,14 @@ Checking test 032 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 609.259282 -0: The maximum resident set size (KB) = 844028 +0: The total amount of wall time = 603.159244 +0: The maximum resident set size (KB) = 851552 Test 032 control_c48_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_c192_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_c192_intel Checking test 033 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1895,14 +1895,14 @@ Checking test 033 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 837.434290 - 0: The maximum resident set size (KB) = 717184 + 0: The total amount of wall time = 775.886480 + 0: The maximum resident set size (KB) = 725836 Test 033 control_c192_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_c384_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_c384_intel Checking test 034 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1913,14 +1913,14 @@ Checking test 034 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1142.377336 - 0: The maximum resident set size (KB) = 898824 + 0: The total amount of wall time = 1022.102914 + 0: The maximum resident set size (KB) = 902568 Test 034 control_c384_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_c384gdas_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_c384gdas_intel Checking test 035 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1932,9 +1932,9 @@ Checking test 035 control_c384gdas_intel results .... Comparing GFSPRS.GrbF06 .........OK Comparing RESTART/20210322.060000.coupler.res .........OK Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK @@ -1942,35 +1942,35 @@ Checking test 035 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1006.720043 - 0: The maximum resident set size (KB) = 1012984 + 0: The total amount of wall time = 834.101786 + 0: The maximum resident set size (KB) = 1005800 Test 035 control_c384gdas_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_stochy_intel Checking test 036 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1981,28 +1981,28 @@ Checking test 036 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 128.849776 - 0: The maximum resident set size (KB) = 591444 + 0: The total amount of wall time = 154.767462 + 0: The maximum resident set size (KB) = 598532 Test 036 control_stochy_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_stochy_restart_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_stochy_restart_intel Checking test 037 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 91.002312 - 0: The maximum resident set size (KB) = 430432 + 0: The total amount of wall time = 69.061126 + 0: The maximum resident set size (KB) = 428120 Test 037 control_stochy_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_lndp_intel Checking test 038 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2013,14 +2013,14 @@ Checking test 038 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 130.339056 - 0: The maximum resident set size (KB) = 603752 + 0: The total amount of wall time = 158.699949 + 0: The maximum resident set size (KB) = 600412 Test 038 control_lndp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_iovr4_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_iovr4_intel Checking test 039 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2035,14 +2035,14 @@ Checking test 039 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 206.920799 - 0: The maximum resident set size (KB) = 601312 + 0: The total amount of wall time = 224.566423 + 0: The maximum resident set size (KB) = 593456 Test 039 control_iovr4_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_iovr5_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_iovr5_intel Checking test 040 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2057,14 +2057,14 @@ Checking test 040 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 202.681771 - 0: The maximum resident set size (KB) = 593032 + 0: The total amount of wall time = 226.888517 + 0: The maximum resident set size (KB) = 599000 Test 040 control_iovr5_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_intel Checking test 041 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2111,14 +2111,14 @@ Checking test 041 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 309.167329 - 0: The maximum resident set size (KB) = 1554036 + 0: The total amount of wall time = 243.717315 + 0: The maximum resident set size (KB) = 1556992 Test 041 control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_p8_ugwpv1_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_ugwpv1_intel Checking test 042 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2165,14 +2165,14 @@ Checking test 042 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 289.417461 - 0: The maximum resident set size (KB) = 1568132 + 0: The total amount of wall time = 219.343575 + 0: The maximum resident set size (KB) = 1556072 Test 042 control_p8_ugwpv1_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_restart_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_restart_p8_intel Checking test 043 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2211,14 +2211,14 @@ Checking test 043 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 123.144170 - 0: The maximum resident set size (KB) = 812048 + 0: The total amount of wall time = 144.920757 + 0: The maximum resident set size (KB) = 812868 Test 043 control_restart_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_noqr_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_noqr_p8_intel Checking test 044 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2265,14 +2265,14 @@ Checking test 044 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 305.594883 - 0: The maximum resident set size (KB) = 1548004 + 0: The total amount of wall time = 227.605378 + 0: The maximum resident set size (KB) = 1548664 Test 044 control_noqr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_restart_noqr_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_restart_noqr_p8_intel Checking test 045 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2311,14 +2311,14 @@ Checking test 045 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 122.919621 - 0: The maximum resident set size (KB) = 831180 + 0: The total amount of wall time = 120.871166 + 0: The maximum resident set size (KB) = 834232 Test 045 control_restart_noqr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_decomp_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_decomp_p8_intel Checking test 046 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2361,14 +2361,14 @@ Checking test 046 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 251.565850 - 0: The maximum resident set size (KB) = 1545052 + 0: The total amount of wall time = 240.469612 + 0: The maximum resident set size (KB) = 1558684 Test 046 control_decomp_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_2threads_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_2threads_p8_intel Checking test 047 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2411,14 +2411,14 @@ Checking test 047 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 214.793334 - 0: The maximum resident set size (KB) = 1662012 + 0: The total amount of wall time = 211.501209 + 0: The maximum resident set size (KB) = 1645216 Test 047 control_2threads_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_p8_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_lndp_intel Checking test 048 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2437,14 +2437,14 @@ Checking test 048 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 431.790233 - 0: The maximum resident set size (KB) = 1562500 + 0: The total amount of wall time = 409.373028 + 0: The maximum resident set size (KB) = 1561508 Test 048 control_p8_lndp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_p8_rrtmgp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_rrtmgp_intel Checking test 049 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2491,14 +2491,14 @@ Checking test 049 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 313.751232 - 0: The maximum resident set size (KB) = 1618192 + 0: The total amount of wall time = 296.046370 + 0: The maximum resident set size (KB) = 1620592 Test 049 control_p8_rrtmgp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_p8_mynn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_mynn_intel Checking test 050 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2545,14 +2545,14 @@ Checking test 050 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 244.542776 - 0: The maximum resident set size (KB) = 1563164 + 0: The total amount of wall time = 225.563238 + 0: The maximum resident set size (KB) = 1561896 Test 050 control_p8_mynn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/merra2_thompson_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/merra2_thompson_intel Checking test 051 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2599,14 +2599,14 @@ Checking test 051 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 269.336493 - 0: The maximum resident set size (KB) = 1566916 + 0: The total amount of wall time = 263.713364 + 0: The maximum resident set size (KB) = 1568648 Test 051 merra2_thompson_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_control_intel Checking test 052 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2617,28 +2617,28 @@ Checking test 052 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 487.818511 - 0: The maximum resident set size (KB) = 755092 + 0: The total amount of wall time = 426.498804 + 0: The maximum resident set size (KB) = 751264 Test 052 regional_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/regional_restart_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_restart_intel Checking test 053 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 309.779919 - 0: The maximum resident set size (KB) = 934456 + 0: The total amount of wall time = 227.348313 + 0: The maximum resident set size (KB) = 936360 Test 053 regional_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/regional_decomp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2649,14 +2649,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 488.787647 - 0: The maximum resident set size (KB) = 754080 + 0: The total amount of wall time = 435.208311 + 0: The maximum resident set size (KB) = 756964 Test 054 regional_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/regional_2threads_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2667,28 +2667,28 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 268.676152 - 0: The maximum resident set size (KB) = 743188 + 0: The total amount of wall time = 264.133722 + 0: The maximum resident set size (KB) = 747448 -Test 055 regional_2threads_intel PASS Tries: 2 +Test 055 regional_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/regional_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_netcdf_parallel_intel Checking test 056 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 471.670093 - 0: The maximum resident set size (KB) = 757148 + 0: The total amount of wall time = 465.541618 + 0: The maximum resident set size (KB) = 753932 Test 056 regional_netcdf_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/regional_2dwrtdecomp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_2dwrtdecomp_intel Checking test 057 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2699,14 +2699,14 @@ Checking test 057 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 445.753532 - 0: The maximum resident set size (KB) = 760604 + 0: The total amount of wall time = 430.767412 + 0: The maximum resident set size (KB) = 759852 Test 057 regional_2dwrtdecomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_control_intel Checking test 058 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2753,14 +2753,14 @@ Checking test 058 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 642.081718 - 0: The maximum resident set size (KB) = 972820 + 0: The total amount of wall time = 628.897293 + 0: The maximum resident set size (KB) = 966708 Test 058 rap_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/regional_spp_sppt_shum_skeb_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_spp_sppt_shum_skeb_intel Checking test 059 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2771,14 +2771,14 @@ Checking test 059 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 371.299872 - 0: The maximum resident set size (KB) = 1204436 + 0: The total amount of wall time = 479.220842 + 0: The maximum resident set size (KB) = 1205972 Test 059 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_decomp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_decomp_intel Checking test 060 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2825,14 +2825,14 @@ Checking test 060 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 667.499037 - 0: The maximum resident set size (KB) = 979184 + 0: The total amount of wall time = 632.227708 + 0: The maximum resident set size (KB) = 958360 Test 060 rap_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_2threads_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_2threads_intel Checking test 061 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2879,14 +2879,14 @@ Checking test 061 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 612.990511 - 0: The maximum resident set size (KB) = 1060076 + 0: The total amount of wall time = 601.036051 + 0: The maximum resident set size (KB) = 1064436 Test 061 rap_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_restart_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_restart_intel Checking test 062 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2925,14 +2925,14 @@ Checking test 062 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 354.807249 - 0: The maximum resident set size (KB) = 968588 + 0: The total amount of wall time = 316.273813 + 0: The maximum resident set size (KB) = 968740 Test 062 rap_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_sfcdiff_intel Checking test 063 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2979,14 +2979,14 @@ Checking test 063 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 669.035805 - 0: The maximum resident set size (KB) = 973872 + 0: The total amount of wall time = 598.769691 + 0: The maximum resident set size (KB) = 964536 Test 063 rap_sfcdiff_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_sfcdiff_decomp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_sfcdiff_decomp_intel Checking test 064 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3033,14 +3033,14 @@ Checking test 064 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 674.063114 - 0: The maximum resident set size (KB) = 961408 + 0: The total amount of wall time = 614.927690 + 0: The maximum resident set size (KB) = 963116 Test 064 rap_sfcdiff_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_sfcdiff_restart_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_sfcdiff_restart_intel Checking test 065 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3079,14 +3079,14 @@ Checking test 065 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 544.423564 - 0: The maximum resident set size (KB) = 986196 + 0: The total amount of wall time = 455.473650 + 0: The maximum resident set size (KB) = 981408 Test 065 rap_sfcdiff_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_intel Checking test 066 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3133,14 +3133,14 @@ Checking test 066 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 349.509386 - 0: The maximum resident set size (KB) = 967952 + 0: The total amount of wall time = 303.390755 + 0: The maximum resident set size (KB) = 963484 Test 066 hrrr_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_control_decomp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_decomp_intel Checking test 067 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3187,14 +3187,14 @@ Checking test 067 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 353.792117 - 0: The maximum resident set size (KB) = 958284 + 0: The total amount of wall time = 310.795916 + 0: The maximum resident set size (KB) = 952796 Test 067 hrrr_control_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_control_2threads_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_2threads_intel Checking test 068 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3241,28 +3241,28 @@ Checking test 068 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.981229 - 0: The maximum resident set size (KB) = 1054588 + 0: The total amount of wall time = 319.690605 + 0: The maximum resident set size (KB) = 1034104 Test 068 hrrr_control_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_control_restart_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_restart_intel Checking test 069 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 176.122455 - 0: The maximum resident set size (KB) = 900592 + 0: The total amount of wall time = 156.766711 + 0: The maximum resident set size (KB) = 896724 Test 069 hrrr_control_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rrfs_v1beta_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rrfs_v1beta_intel Checking test 070 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3309,14 +3309,14 @@ Checking test 070 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 634.448929 - 0: The maximum resident set size (KB) = 968336 + 0: The total amount of wall time = 592.016207 + 0: The maximum resident set size (KB) = 960200 Test 070 rrfs_v1beta_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rrfs_v1nssl_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rrfs_v1nssl_intel Checking test 071 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3331,14 +3331,14 @@ Checking test 071 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 830.248295 - 0: The maximum resident set size (KB) = 1927060 + 0: The total amount of wall time = 750.197024 + 0: The maximum resident set size (KB) = 1924032 Test 071 rrfs_v1nssl_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rrfs_v1nssl_nohailnoccn_intel Checking test 072 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3353,14 +3353,14 @@ Checking test 072 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 799.631816 - 0: The maximum resident set size (KB) = 1921928 + 0: The total amount of wall time = 728.458220 + 0: The maximum resident set size (KB) = 1921580 Test 072 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_csawmg_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_csawmg_intel Checking test 073 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3371,14 +3371,14 @@ Checking test 073 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 521.762101 - 0: The maximum resident set size (KB) = 674876 + 0: The total amount of wall time = 478.115315 + 0: The maximum resident set size (KB) = 690804 Test 073 control_csawmg_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_csawmgt_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_csawmgt_intel Checking test 074 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3389,14 +3389,14 @@ Checking test 074 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 551.386964 - 0: The maximum resident set size (KB) = 683308 + 0: The total amount of wall time = 465.482148 + 0: The maximum resident set size (KB) = 682656 Test 074 control_csawmgt_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_ras_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_ras_intel Checking test 075 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3407,26 +3407,26 @@ Checking test 075 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 286.332268 - 0: The maximum resident set size (KB) = 655392 + 0: The total amount of wall time = 255.784614 + 0: The maximum resident set size (KB) = 656428 Test 075 control_ras_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_wam_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_wam_intel Checking test 076 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 216.671885 - 0: The maximum resident set size (KB) = 494788 + 0: The total amount of wall time = 168.445992 + 0: The maximum resident set size (KB) = 496720 Test 076 control_wam_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_faster_intel Checking test 077 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3473,14 +3473,14 @@ Checking test 077 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 246.052387 - 0: The maximum resident set size (KB) = 1557588 + 0: The total amount of wall time = 220.329026 + 0: The maximum resident set size (KB) = 1557880 Test 077 control_p8_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/regional_control_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_control_faster_intel Checking test 078 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3491,14 +3491,14 @@ Checking test 078 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 402.312410 - 0: The maximum resident set size (KB) = 749600 + 0: The total amount of wall time = 401.570741 + 0: The maximum resident set size (KB) = 752992 Test 078 regional_control_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_CubedSphereGrid_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_CubedSphereGrid_debug_intel Checking test 079 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3525,364 +3525,364 @@ Checking test 079 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 200.413002 - 0: The maximum resident set size (KB) = 753400 + 0: The total amount of wall time = 192.490407 + 0: The maximum resident set size (KB) = 750844 Test 079 control_CubedSphereGrid_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_wrtGauss_netcdf_parallel_debug_intel Checking test 080 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.464167 - 0: The maximum resident set size (KB) = 748524 + 0: The total amount of wall time = 187.972743 + 0: The maximum resident set size (KB) = 746548 Test 080 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_stochy_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_stochy_debug_intel Checking test 081 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 255.770767 - 0: The maximum resident set size (KB) = 756736 + 0: The total amount of wall time = 213.081972 + 0: The maximum resident set size (KB) = 757112 Test 081 control_stochy_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_lndp_debug_intel Checking test 082 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.530030 - 0: The maximum resident set size (KB) = 753308 + 0: The total amount of wall time = 191.783454 + 0: The maximum resident set size (KB) = 760372 Test 082 control_lndp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_csawmg_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_csawmg_debug_intel Checking test 083 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 300.775474 - 0: The maximum resident set size (KB) = 799304 + 0: The total amount of wall time = 302.265998 + 0: The maximum resident set size (KB) = 800744 Test 083 control_csawmg_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_csawmgt_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_csawmgt_debug_intel Checking test 084 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 312.890688 - 0: The maximum resident set size (KB) = 802132 + 0: The total amount of wall time = 309.849254 + 0: The maximum resident set size (KB) = 799084 Test 084 control_csawmgt_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_ras_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_ras_debug_intel Checking test 085 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.186123 - 0: The maximum resident set size (KB) = 764408 + 0: The total amount of wall time = 191.558943 + 0: The maximum resident set size (KB) = 762404 Test 085 control_ras_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_diag_debug_intel Checking test 086 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.342609 - 0: The maximum resident set size (KB) = 804436 + 0: The total amount of wall time = 195.178858 + 0: The maximum resident set size (KB) = 812228 Test 086 control_diag_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_debug_p8_intel Checking test 087 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.840137 - 0: The maximum resident set size (KB) = 1578064 + 0: The total amount of wall time = 202.174325 + 0: The maximum resident set size (KB) = 1577236 Test 087 control_debug_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/regional_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_debug_intel Checking test 088 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1319.735613 - 0: The maximum resident set size (KB) = 768040 + 0: The total amount of wall time = 1317.351066 + 0: The maximum resident set size (KB) = 767440 Test 088 regional_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_control_debug_intel Checking test 089 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 374.499161 - 0: The maximum resident set size (KB) = 1136888 + 0: The total amount of wall time = 353.102257 + 0: The maximum resident set size (KB) = 1132080 Test 089 rap_control_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_debug_intel Checking test 090 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.474435 - 0: The maximum resident set size (KB) = 1131240 + 0: The total amount of wall time = 349.939740 + 0: The maximum resident set size (KB) = 1127016 Test 090 hrrr_control_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_gf_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_gf_debug_intel Checking test 091 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 362.229949 - 0: The maximum resident set size (KB) = 1139892 + 0: The total amount of wall time = 351.610078 + 0: The maximum resident set size (KB) = 1132572 Test 091 hrrr_gf_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_c3_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_c3_debug_intel Checking test 092 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 352.351255 - 0: The maximum resident set size (KB) = 1133164 + 0: The total amount of wall time = 357.234398 + 0: The maximum resident set size (KB) = 1137440 Test 092 hrrr_c3_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_unified_drag_suite_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_unified_drag_suite_debug_intel Checking test 093 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.236828 - 0: The maximum resident set size (KB) = 1133928 + 0: The total amount of wall time = 354.950314 + 0: The maximum resident set size (KB) = 1133776 Test 093 rap_unified_drag_suite_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_diag_debug_intel Checking test 094 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 370.140253 - 0: The maximum resident set size (KB) = 1228580 + 0: The total amount of wall time = 377.815050 + 0: The maximum resident set size (KB) = 1217836 Test 094 rap_diag_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_cires_ugwp_debug_intel Checking test 095 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 365.803311 - 0: The maximum resident set size (KB) = 1133104 + 0: The total amount of wall time = 358.823849 + 0: The maximum resident set size (KB) = 1144100 Test 095 rap_cires_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_unified_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_unified_ugwp_debug_intel Checking test 096 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 361.642082 - 0: The maximum resident set size (KB) = 1129536 + 0: The total amount of wall time = 360.188224 + 0: The maximum resident set size (KB) = 1140600 Test 096 rap_unified_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_lndp_debug_intel Checking test 097 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.469693 - 0: The maximum resident set size (KB) = 1131952 + 0: The total amount of wall time = 356.346610 + 0: The maximum resident set size (KB) = 1143964 Test 097 rap_lndp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_progcld_thompson_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_progcld_thompson_debug_intel Checking test 098 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.203526 - 0: The maximum resident set size (KB) = 1141252 + 0: The total amount of wall time = 353.215987 + 0: The maximum resident set size (KB) = 1143608 Test 098 rap_progcld_thompson_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_noah_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_noah_debug_intel Checking test 099 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 351.312196 - 0: The maximum resident set size (KB) = 1132060 + 0: The total amount of wall time = 346.608019 + 0: The maximum resident set size (KB) = 1134076 Test 099 rap_noah_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_sfcdiff_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_sfcdiff_debug_intel Checking test 100 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.404419 - 0: The maximum resident set size (KB) = 1131944 + 0: The total amount of wall time = 359.642470 + 0: The maximum resident set size (KB) = 1135520 Test 100 rap_sfcdiff_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 582.942160 - 0: The maximum resident set size (KB) = 1139284 + 0: The total amount of wall time = 587.859844 + 0: The maximum resident set size (KB) = 1140564 Test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rrfs_v1beta_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rrfs_v1beta_debug_intel Checking test 102 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.963758 - 0: The maximum resident set size (KB) = 1128964 + 0: The total amount of wall time = 350.343287 + 0: The maximum resident set size (KB) = 1128152 Test 102 rrfs_v1beta_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_clm_lake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_clm_lake_debug_intel Checking test 103 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 438.618979 - 0: The maximum resident set size (KB) = 1135904 + 0: The total amount of wall time = 437.635963 + 0: The maximum resident set size (KB) = 1151172 Test 103 rap_clm_lake_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_flake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_flake_debug_intel Checking test 104 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.159220 - 0: The maximum resident set size (KB) = 1140280 + 0: The total amount of wall time = 353.621826 + 0: The maximum resident set size (KB) = 1133652 Test 104 rap_flake_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/gnv1_c96_no_nest_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/gnv1_c96_no_nest_debug_intel Checking test 105 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3923,26 +3923,26 @@ Checking test 105 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 620.388509 - 0: The maximum resident set size (KB) = 1142764 + 0: The total amount of wall time = 630.324285 + 0: The maximum resident set size (KB) = 1147808 Test 105 gnv1_c96_no_nest_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_wam_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_wam_debug_intel Checking test 106 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 358.506600 - 0: The maximum resident set size (KB) = 422816 + 0: The total amount of wall time = 355.866710 + 0: The maximum resident set size (KB) = 426180 Test 106 control_wam_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3953,14 +3953,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 321.313523 - 0: The maximum resident set size (KB) = 1079324 + 0: The total amount of wall time = 310.545600 + 0: The maximum resident set size (KB) = 1072628 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_control_dyn32_phy32_intel Checking test 108 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4007,14 +4007,14 @@ Checking test 108 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 492.023434 - 0: The maximum resident set size (KB) = 883980 + 0: The total amount of wall time = 540.430023 + 0: The maximum resident set size (KB) = 905464 Test 108 rap_control_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_dyn32_phy32_intel Checking test 109 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4061,14 +4061,14 @@ Checking test 109 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 253.731209 - 0: The maximum resident set size (KB) = 859092 + 0: The total amount of wall time = 276.079008 + 0: The maximum resident set size (KB) = 859340 Test 109 hrrr_control_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_2threads_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_2threads_dyn32_phy32_intel Checking test 110 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4115,14 +4115,14 @@ Checking test 110 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.511933 - 0: The maximum resident set size (KB) = 925440 + 0: The total amount of wall time = 519.189753 + 0: The maximum resident set size (KB) = 926748 Test 110 rap_2threads_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_2threads_dyn32_phy32_intel Checking test 111 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4169,14 +4169,14 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.158466 - 0: The maximum resident set size (KB) = 904252 + 0: The total amount of wall time = 252.924772 + 0: The maximum resident set size (KB) = 911056 Test 111 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_decomp_dyn32_phy32_intel Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4223,14 +4223,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 271.782609 - 0: The maximum resident set size (KB) = 857412 + 0: The total amount of wall time = 285.598751 + 0: The maximum resident set size (KB) = 845876 Test 112 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_restart_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_restart_dyn32_phy32_intel Checking test 113 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4269,28 +4269,28 @@ Checking test 113 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 386.337187 - 0: The maximum resident set size (KB) = 893896 + 0: The total amount of wall time = 376.424202 + 0: The maximum resident set size (KB) = 886748 Test 113 rap_restart_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_control_restart_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_restart_dyn32_phy32_intel Checking test 114 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 150.418786 - 0: The maximum resident set size (KB) = 843028 + 0: The total amount of wall time = 166.653642 + 0: The maximum resident set size (KB) = 829232 Test 114 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/conus13km_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/conus13km_control_intel Checking test 115 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4306,40 +4306,40 @@ Checking test 115 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 166.141109 - 0: The maximum resident set size (KB) = 1089324 + 0: The total amount of wall time = 169.747631 + 0: The maximum resident set size (KB) = 1090200 Test 115 conus13km_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/conus13km_2threads_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/conus13km_2threads_intel Checking test 116 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 198.176876 - 0: The maximum resident set size (KB) = 1045992 + 0: The total amount of wall time = 69.614378 + 0: The maximum resident set size (KB) = 1040580 Test 116 conus13km_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/conus13km_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/conus13km_restart_mismatch_intel Checking test 117 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 86.965036 - 0: The maximum resident set size (KB) = 1010624 + 0: The total amount of wall time = 87.990363 + 0: The maximum resident set size (KB) = 1007572 Test 117 conus13km_restart_mismatch_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_control_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_control_dyn64_phy32_intel Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4386,42 +4386,42 @@ Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.521069 - 0: The maximum resident set size (KB) = 894676 + 0: The total amount of wall time = 384.000363 + 0: The maximum resident set size (KB) = 891008 Test 118 rap_control_dyn64_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_control_debug_dyn32_phy32_intel Checking test 119 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.002744 - 0: The maximum resident set size (KB) = 1015792 + 0: The total amount of wall time = 347.554647 + 0: The maximum resident set size (KB) = 1023108 Test 119 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_debug_dyn32_phy32_intel Checking test 120 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 343.951303 - 0: The maximum resident set size (KB) = 1014992 + 0: The total amount of wall time = 343.123992 + 0: The maximum resident set size (KB) = 1011440 Test 120 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/conus13km_debug_intel Checking test 121 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4435,14 +4435,14 @@ Checking test 121 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 1073.252372 - 0: The maximum resident set size (KB) = 1126576 + 0: The total amount of wall time = 1076.120549 + 0: The maximum resident set size (KB) = 1133136 Test 121 conus13km_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/conus13km_debug_qr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/conus13km_debug_qr_intel Checking test 122 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4456,81 +4456,81 @@ Checking test 122 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1099.218709 - 0: The maximum resident set size (KB) = 835656 + 0: The total amount of wall time = 1091.667718 + 0: The maximum resident set size (KB) = 837892 Test 122 conus13km_debug_qr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/conus13km_debug_2threads_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/conus13km_debug_2threads_intel Checking test 123 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 620.714077 - 0: The maximum resident set size (KB) = 1074336 + 0: The total amount of wall time = 619.059483 + 0: The maximum resident set size (KB) = 1075356 Test 123 conus13km_debug_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/conus13km_radar_tten_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/conus13km_radar_tten_debug_intel Checking test 124 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1080.558470 - 0: The maximum resident set size (KB) = 1195264 + 0: The total amount of wall time = 1074.252553 + 0: The maximum resident set size (KB) = 1199864 Test 124 conus13km_radar_tten_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_control_dyn64_phy32_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_control_dyn64_phy32_debug_intel Checking test 125 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.404818 - 0: The maximum resident set size (KB) = 1051676 + 0: The total amount of wall time = 352.629945 + 0: The maximum resident set size (KB) = 1057328 Test 125 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hafs_regional_atm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hafs_regional_atm_intel Checking test 126 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 513.880619 - 0: The maximum resident set size (KB) = 707352 + 0: The total amount of wall time = 443.298821 + 0: The maximum resident set size (KB) = 706520 Test 126 hafs_regional_atm_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hafs_regional_atm_thompson_gfdlsf_intel Checking test 127 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 478.996506 - 0: The maximum resident set size (KB) = 1072092 + 0: The total amount of wall time = 403.824865 + 0: The maximum resident set size (KB) = 1080344 Test 127 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hafs_regional_atm_ocn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hafs_regional_atm_ocn_intel Checking test 128 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4539,14 +4539,14 @@ Checking test 128 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 588.190584 - 0: The maximum resident set size (KB) = 764172 + 0: The total amount of wall time = 655.990409 + 0: The maximum resident set size (KB) = 759608 Test 128 hafs_regional_atm_ocn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hafs_regional_atm_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hafs_regional_atm_wav_intel Checking test 129 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4555,18 +4555,32 @@ Checking test 129 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 998.566444 - 0: The maximum resident set size (KB) = 795076 + 0: The total amount of wall time = 966.545456 + 0: The maximum resident set size (KB) = 794428 Test 129 hafs_regional_atm_wav_intel PASS -Test 130 hafs_regional_atm_ocn_wav_intel FAIL -Test 130 hafs_regional_atm_ocn_wav_intel FAIL +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hafs_regional_atm_ocn_wav_intel +Checking test 130 hafs_regional_atm_ocn_wav_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 1090.458519 + 0: The maximum resident set size (KB) = 811940 + +Test 130 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/gnv1_nested_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/gnv1_nested_intel Checking test 131 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4578,49 +4592,49 @@ Checking test 131 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 438.815285 - 0: The maximum resident set size (KB) = 766280 + 0: The total amount of wall time = 363.769047 + 0: The maximum resident set size (KB) = 764948 Test 131 gnv1_nested_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hafs_regional_docn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hafs_regional_docn_intel Checking test 132 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4628,14 +4642,14 @@ Checking test 132 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 560.879494 - 0: The maximum resident set size (KB) = 763636 + 0: The total amount of wall time = 518.557268 + 0: The maximum resident set size (KB) = 762728 Test 132 hafs_regional_docn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hafs_regional_docn_oisst_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hafs_regional_docn_oisst_intel Checking test 133 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4643,118 +4657,118 @@ Checking test 133 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 538.473851 - 0: The maximum resident set size (KB) = 751256 + 0: The total amount of wall time = 517.251897 + 0: The maximum resident set size (KB) = 754184 Test 133 hafs_regional_docn_oisst_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_control_cfsr_intel Checking test 134 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 212.365688 - 0: The maximum resident set size (KB) = 1030524 + 0: The total amount of wall time = 220.939666 + 0: The maximum resident set size (KB) = 1041044 Test 134 datm_cdeps_control_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_restart_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_restart_cfsr_intel Checking test 135 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 136.692765 - 0: The maximum resident set size (KB) = 1008164 + 0: The total amount of wall time = 125.748138 + 0: The maximum resident set size (KB) = 1010424 Test 135 datm_cdeps_restart_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_control_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_control_gefs_intel Checking test 136 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 201.158342 - 0: The maximum resident set size (KB) = 908620 + 0: The total amount of wall time = 205.912886 + 0: The maximum resident set size (KB) = 912816 Test 136 datm_cdeps_control_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_iau_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_iau_gefs_intel Checking test 137 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 207.012382 - 0: The maximum resident set size (KB) = 903036 + 0: The total amount of wall time = 211.864442 + 0: The maximum resident set size (KB) = 916024 Test 137 datm_cdeps_iau_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_stochy_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_stochy_gefs_intel Checking test 138 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 218.035254 - 0: The maximum resident set size (KB) = 902884 + 0: The total amount of wall time = 215.613949 + 0: The maximum resident set size (KB) = 912072 Test 138 datm_cdeps_stochy_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_ciceC_cfsr_intel Checking test 139 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 225.782396 - 0: The maximum resident set size (KB) = 1031800 + 0: The total amount of wall time = 210.309708 + 0: The maximum resident set size (KB) = 1034352 Test 139 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_bulk_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_bulk_cfsr_intel Checking test 140 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 211.565677 - 0: The maximum resident set size (KB) = 1036904 + 0: The total amount of wall time = 209.676994 + 0: The maximum resident set size (KB) = 1040748 Test 140 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_bulk_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_bulk_gefs_intel Checking test 141 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 210.527962 - 0: The maximum resident set size (KB) = 911592 + 0: The total amount of wall time = 210.204584 + 0: The maximum resident set size (KB) = 916436 Test 141 datm_cdeps_bulk_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_mx025_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_mx025_cfsr_intel Checking test 142 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4763,14 +4777,14 @@ Checking test 142 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 480.413607 - 0: The maximum resident set size (KB) = 882800 + 0: The total amount of wall time = 483.159532 + 0: The maximum resident set size (KB) = 876200 Test 142 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_mx025_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_mx025_gefs_intel Checking test 143 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4779,77 +4793,77 @@ Checking test 143 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 506.477407 - 0: The maximum resident set size (KB) = 824832 + 0: The total amount of wall time = 470.759085 + 0: The maximum resident set size (KB) = 835960 Test 143 datm_cdeps_mx025_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_multiple_files_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_multiple_files_cfsr_intel Checking test 144 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 212.276498 - 0: The maximum resident set size (KB) = 1048124 + 0: The total amount of wall time = 201.941141 + 0: The maximum resident set size (KB) = 1034344 Test 144 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_3072x1536_cfsr_intel Checking test 145 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 322.205490 - 0: The maximum resident set size (KB) = 2373096 + 0: The total amount of wall time = 286.844545 + 0: The maximum resident set size (KB) = 2342548 Test 145 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_gfs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_gfs_intel Checking test 146 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 305.931874 - 0: The maximum resident set size (KB) = 2321892 + 0: The total amount of wall time = 319.705100 + 0: The maximum resident set size (KB) = 2391576 Test 146 datm_cdeps_gfs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_debug_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_debug_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_debug_cfsr_intel Checking test 147 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 462.218799 - 0: The maximum resident set size (KB) = 1000440 + 0: The total amount of wall time = 468.447559 + 0: The maximum resident set size (KB) = 990680 Test 147 datm_cdeps_debug_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_control_cfsr_faster_intel Checking test 148 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 206.632742 - 0: The maximum resident set size (KB) = 1029256 + 0: The total amount of wall time = 219.323172 + 0: The maximum resident set size (KB) = 1034180 Test 148 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_lnd_gswp3_intel Checking test 149 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4858,14 +4872,14 @@ Checking test 149 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 151.041608 - 0: The maximum resident set size (KB) = 225252 + 0: The total amount of wall time = 90.188574 + 0: The maximum resident set size (KB) = 223740 Test 149 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_lnd_era5_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_lnd_era5_intel Checking test 150 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -4874,14 +4888,14 @@ Checking test 150 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 85.477378 - 0: The maximum resident set size (KB) = 245608 + 0: The total amount of wall time = 65.236300 + 0: The maximum resident set size (KB) = 251264 Test 150 datm_cdeps_lnd_era5_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_lnd_era5_rst_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_lnd_era5_rst_intel Checking test 151 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -4890,14 +4904,14 @@ Checking test 151 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 50.254967 - 0: The maximum resident set size (KB) = 249200 + 0: The total amount of wall time = 36.899065 + 0: The maximum resident set size (KB) = 244708 Test 151 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_p8_atmlnd_sbs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_atmlnd_sbs_intel Checking test 152 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4986,14 +5000,14 @@ Checking test 152 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 842.735783 - 0: The maximum resident set size (KB) = 1574620 + 0: The total amount of wall time = 616.627105 + 0: The maximum resident set size (KB) = 1577792 Test 152 control_p8_atmlnd_sbs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_p8_atmlnd_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_atmlnd_intel Checking test 153 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5082,14 +5096,14 @@ Checking test 153 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 876.946719 - 0: The maximum resident set size (KB) = 1586668 + 0: The total amount of wall time = 660.431612 + 0: The maximum resident set size (KB) = 1586640 Test 153 control_p8_atmlnd_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_restart_p8_atmlnd_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_restart_p8_atmlnd_intel Checking test 154 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5110,14 +5124,14 @@ Checking test 154 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 335.395509 - 0: The maximum resident set size (KB) = 862396 + 0: The total amount of wall time = 299.971510 + 0: The maximum resident set size (KB) = 847156 Test 154 control_restart_p8_atmlnd_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/atmwav_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/atmwav_control_noaero_p8_intel Checking test 155 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5160,14 +5174,14 @@ Checking test 155 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 182.420972 - 0: The maximum resident set size (KB) = 1591856 + 0: The total amount of wall time = 126.897672 + 0: The maximum resident set size (KB) = 1578440 Test 155 atmwav_control_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_atmwav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_atmwav_intel Checking test 156 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5211,14 +5225,14 @@ Checking test 156 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 617.078935 - 0: The maximum resident set size (KB) = 600112 + 0: The total amount of wall time = 126.754232 + 0: The maximum resident set size (KB) = 597980 Test 156 control_atmwav_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/atmaero_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/atmaero_control_p8_intel Checking test 157 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5262,14 +5276,14 @@ Checking test 157 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 319.089759 - 0: The maximum resident set size (KB) = 1663444 + 0: The total amount of wall time = 312.736648 + 0: The maximum resident set size (KB) = 1667380 Test 157 atmaero_control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/atmaero_control_p8_rad_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/atmaero_control_p8_rad_intel Checking test 158 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5313,14 +5327,14 @@ Checking test 158 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 390.690836 - 0: The maximum resident set size (KB) = 1691284 + 0: The total amount of wall time = 371.562073 + 0: The maximum resident set size (KB) = 1690284 Test 158 atmaero_control_p8_rad_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/atmaero_control_p8_rad_micro_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/atmaero_control_p8_rad_micro_intel Checking test 159 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5364,54 +5378,12 @@ Checking test 159 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 403.422838 - 0: The maximum resident set size (KB) = 1715216 + 0: The total amount of wall time = 393.158796 + 0: The maximum resident set size (KB) = 1709132 Test 159 atmaero_control_p8_rad_micro_intel PASS -FAILED TESTS: -hafs_regional_atm_ocn_wav_intel 130 failed in run_test - -REGRESSION TEST FAILED -Wed Jan 31 22:00:33 UTC 2024 -Elapsed time: 03h:49m:51s. Have a nice day! -Thu Feb 1 01:05:48 UTC 2024 -Start Regression test - -Testing UFSWM Hash: 2d9959c5ab71b771c51e1d5995792df7c00e0a9c -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 7437f73df4b43e8924b6493c5067544af097ad78 CMEPS-interface/CMEPS (cmeps_v0.4.1-1412-g7437f73) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b7587dfeacd95f43da0595dee42b78a2d78653e9 FV3 (remotes/origin/feature/hafsv2_baseline_with_ssc) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile hafsw_intel elapsed time 1934 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_235951/hafs_regional_atm_ocn_wav_intel -Checking test 001 hafs_regional_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 1082.883641 - 0: The maximum resident set size (KB) = 804928 - -Test 001 hafs_regional_atm_ocn_wav_intel PASS - REGRESSION TEST WAS SUCCESSFUL -Thu Feb 1 02:01:04 UTC 2024 -Elapsed time: 00h:55m:18s. Have a nice day! +Fri Feb 2 06:43:44 UTC 2024 +Elapsed time: 03h:44m:37s. Have a nice day! From 5d35e69028a76696324e325267df9e2f5ceeebc4 Mon Sep 17 00:00:00 2001 From: zach1221 Date: Fri, 2 Feb 2024 10:02:46 -0600 Subject: [PATCH 49/63] add orion RT logs: passed --- tests/logs/RegressionTests_orion.log | 1370 ++++++++++++++------------ 1 file changed, 716 insertions(+), 654 deletions(-) diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 13e99c3340..87160f27ee 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,61 +1,62 @@ -Wed Jan 31 12:23:21 CST 2024 +Thu Feb 1 22:01:33 CST 2024 Start Regression test -Testing UFSWM Hash: 2d9959c5ab71b771c51e1d5995792df7c00e0a9c +Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 7437f73df4b43e8924b6493c5067544af097ad78 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g7437f73) + eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b7587dfeacd95f43da0595dee42b78a2d78653e9 FV3 (remotes/origin/feature/hafsv2_baseline_with_ssc) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 669 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 266 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 673 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 293 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 815 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 647 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 784 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 660 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 658 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 656 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 256 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 440 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 439 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 115 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 688 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 270 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 728 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 722 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 844 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 605 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 657 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 663 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 693 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 765 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 911 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 292 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1527 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 292 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1211 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 915 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 288 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 813 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 294 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1034 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 647 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 694 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 218 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 702 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 337 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 731 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 702 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 728 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 718 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 704 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 748 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 276 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 428 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 515 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 70 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 678 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 893 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 233 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 892 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 800 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 846 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 704 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 256 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 633 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 705 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 740 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 775 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 874 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 352 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1106 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 313 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1269 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 852 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 309 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 823 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 311 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1202 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 631 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -120,14 +121,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 310.626977 - 0: The maximum resident set size (KB) = 3176072 + 0: The total amount of wall time = 294.046227 + 0: The maximum resident set size (KB) = 3176816 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -191,14 +192,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 971.319060 - 0: The maximum resident set size (KB) = 1735960 + 0: The total amount of wall time = 966.565559 + 0: The maximum resident set size (KB) = 1742380 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_gfsv17_iau_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -244,14 +245,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1031.139526 - 0: The maximum resident set size (KB) = 2025660 + 0: The total amount of wall time = 1064.414508 + 0: The maximum resident set size (KB) = 2026092 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_restart_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -304,14 +305,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 481.301438 - 0: The maximum resident set size (KB) = 1111628 + 0: The total amount of wall time = 468.605638 + 0: The maximum resident set size (KB) = 1115996 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_mpi_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -375,14 +376,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1089.109538 - 0: The maximum resident set size (KB) = 1646472 + 0: The total amount of wall time = 1091.503730 + 0: The maximum resident set size (KB) = 1636144 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_debug_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -434,14 +435,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1362.235892 - 0: The maximum resident set size (KB) = 1682712 + 0: The total amount of wall time = 1355.400569 + 0: The maximum resident set size (KB) = 1689140 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -506,14 +507,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 325.542705 - 0: The maximum resident set size (KB) = 3213380 + 0: The total amount of wall time = 325.640949 + 0: The maximum resident set size (KB) = 3218128 Test 007 cpld_control_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_restart_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -566,14 +567,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 190.857569 - 0: The maximum resident set size (KB) = 3255464 + 0: The total amount of wall time = 188.512875 + 0: The maximum resident set size (KB) = 3259248 Test 008 cpld_restart_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_qr_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -638,14 +639,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 324.710053 - 0: The maximum resident set size (KB) = 3240692 + 0: The total amount of wall time = 328.929311 + 0: The maximum resident set size (KB) = 3160688 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_restart_qr_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -698,14 +699,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 190.769482 - 0: The maximum resident set size (KB) = 3279592 + 0: The total amount of wall time = 192.390015 + 0: The maximum resident set size (KB) = 3273800 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_2threads_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -758,14 +759,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.538557 - 0: The maximum resident set size (KB) = 3556716 + 0: The total amount of wall time = 353.961573 + 0: The maximum resident set size (KB) = 3554640 Test 011 cpld_2threads_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_decomp_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -818,14 +819,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 323.852703 - 0: The maximum resident set size (KB) = 3202400 + 0: The total amount of wall time = 322.932221 + 0: The maximum resident set size (KB) = 3208728 Test 012 cpld_decomp_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_mpi_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -878,14 +879,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 268.574689 - 0: The maximum resident set size (KB) = 3070116 + 0: The total amount of wall time = 271.839824 + 0: The maximum resident set size (KB) = 3074456 Test 013 cpld_mpi_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_ciceC_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -950,14 +951,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 323.937528 - 0: The maximum resident set size (KB) = 3219188 + 0: The total amount of wall time = 326.524557 + 0: The maximum resident set size (KB) = 3216920 Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_c192_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_c192_p8_intel Checking test 015 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1010,14 +1011,14 @@ Checking test 015 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 578.778650 - 0: The maximum resident set size (KB) = 3339092 + 0: The total amount of wall time = 575.326427 + 0: The maximum resident set size (KB) = 3346456 Test 015 cpld_control_c192_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_restart_c192_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_restart_c192_p8_intel Checking test 016 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1070,14 +1071,14 @@ Checking test 016 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 365.388201 - 0: The maximum resident set size (KB) = 3623560 + 0: The total amount of wall time = 364.745418 + 0: The maximum resident set size (KB) = 3619300 Test 016 cpld_restart_c192_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_bmark_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_bmark_p8_intel Checking test 017 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1125,14 +1126,14 @@ Checking test 017 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 637.435051 - 0: The maximum resident set size (KB) = 4047836 + 0: The total amount of wall time = 633.792675 + 0: The maximum resident set size (KB) = 4125356 Test 017 cpld_bmark_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_restart_bmark_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_restart_bmark_p8_intel Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1180,14 +1181,14 @@ Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 406.730520 - 0: The maximum resident set size (KB) = 4289012 + 0: The total amount of wall time = 389.539242 + 0: The maximum resident set size (KB) = 4355964 Test 018 cpld_restart_bmark_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_s2sa_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_s2sa_p8_intel Checking test 019 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1238,14 +1239,14 @@ Checking test 019 cpld_s2sa_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 305.594324 - 0: The maximum resident set size (KB) = 3176736 + 0: The total amount of wall time = 306.647417 + 0: The maximum resident set size (KB) = 3179640 Test 019 cpld_s2sa_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_noaero_p8_intel Checking test 020 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1309,14 +1310,14 @@ Checking test 020 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 250.874776 - 0: The maximum resident set size (KB) = 1732176 + 0: The total amount of wall time = 252.632524 + 0: The maximum resident set size (KB) = 1733068 Test 020 cpld_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_nowave_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_nowave_noaero_p8_intel Checking test 021 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1378,14 +1379,14 @@ Checking test 021 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 249.169752 - 0: The maximum resident set size (KB) = 1782292 + 0: The total amount of wall time = 249.114124 + 0: The maximum resident set size (KB) = 1785904 Test 021 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_debug_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_debug_p8_intel Checking test 022 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1438,14 +1439,14 @@ Checking test 022 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 511.277877 - 0: The maximum resident set size (KB) = 3250436 + 0: The total amount of wall time = 499.646961 + 0: The maximum resident set size (KB) = 3248592 Test 022 cpld_debug_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_debug_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_debug_noaero_p8_intel Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1497,14 +1498,14 @@ Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.991541 - 0: The maximum resident set size (KB) = 1750476 + 0: The total amount of wall time = 338.395066 + 0: The maximum resident set size (KB) = 1756828 Test 023 cpld_debug_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_noaero_p8_agrid_intel Checking test 024 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1566,14 +1567,14 @@ Checking test 024 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 250.715414 - 0: The maximum resident set size (KB) = 1775740 + 0: The total amount of wall time = 246.734504 + 0: The maximum resident set size (KB) = 1781532 Test 024 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_c48_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_c48_intel Checking test 025 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1623,14 +1624,14 @@ Checking test 025 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 476.094025 - 0: The maximum resident set size (KB) = 2833396 + 0: The total amount of wall time = 470.914637 + 0: The maximum resident set size (KB) = 2828148 Test 025 cpld_control_c48_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_p8_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_p8_faster_intel Checking test 026 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1695,14 +1696,14 @@ Checking test 026 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 306.894706 - 0: The maximum resident set size (KB) = 3212716 + 0: The total amount of wall time = 306.059168 + 0: The maximum resident set size (KB) = 3209460 Test 026 cpld_control_p8_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_pdlib_p8_intel Checking test 027 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1766,14 +1767,14 @@ Checking test 027 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1118.493580 - 0: The maximum resident set size (KB) = 1765692 + 0: The total amount of wall time = 976.993130 + 0: The maximum resident set size (KB) = 1773884 Test 027 cpld_control_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_restart_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_restart_pdlib_p8_intel Checking test 028 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1825,14 +1826,14 @@ Checking test 028 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 469.119885 - 0: The maximum resident set size (KB) = 1169612 + 0: The total amount of wall time = 477.590817 + 0: The maximum resident set size (KB) = 1170924 Test 028 cpld_restart_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_mpi_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_mpi_pdlib_p8_intel Checking test 029 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1896,14 +1897,14 @@ Checking test 029 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1096.331049 - 0: The maximum resident set size (KB) = 1683580 + 0: The total amount of wall time = 1103.760909 + 0: The maximum resident set size (KB) = 1632284 Test 029 cpld_mpi_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_debug_pdlib_p8_intel Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1955,14 +1956,14 @@ Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1458.868537 - 0: The maximum resident set size (KB) = 1663564 + 0: The total amount of wall time = 1462.550741 + 0: The maximum resident set size (KB) = 1716116 Test 030 cpld_debug_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_flake_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_flake_intel Checking test 031 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1973,14 +1974,14 @@ Checking test 031 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 198.457228 - 0: The maximum resident set size (KB) = 700144 + 0: The total amount of wall time = 194.072155 + 0: The maximum resident set size (KB) = 701008 Test 031 control_flake_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_CubedSphereGrid_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_CubedSphereGrid_intel Checking test 032 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2007,16 +2008,16 @@ Checking test 032 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 135.396718 - 0: The maximum resident set size (KB) = 644308 + 0: The total amount of wall time = 134.048445 + 0: The maximum resident set size (KB) = 647724 Test 032 control_CubedSphereGrid_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_CubedSphereGrid_parallel_intel Checking test 033 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -2029,14 +2030,14 @@ Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.851647 - 0: The maximum resident set size (KB) = 654620 + 0: The total amount of wall time = 139.901042 + 0: The maximum resident set size (KB) = 659308 Test 033 control_CubedSphereGrid_parallel_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_latlon_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_latlon_intel Checking test 034 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2047,14 +2048,14 @@ Checking test 034 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.944041 - 0: The maximum resident set size (KB) = 655520 + 0: The total amount of wall time = 136.671306 + 0: The maximum resident set size (KB) = 648088 Test 034 control_latlon_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_wrtGauss_netcdf_parallel_intel Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2065,14 +2066,14 @@ Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.745872 - 0: The maximum resident set size (KB) = 651756 + 0: The total amount of wall time = 137.249040 + 0: The maximum resident set size (KB) = 654920 Test 035 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_c48_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_c48_intel Checking test 036 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2111,14 +2112,14 @@ Checking test 036 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 345.516295 -0: The maximum resident set size (KB) = 871240 +0: The total amount of wall time = 345.978202 +0: The maximum resident set size (KB) = 877988 Test 036 control_c48_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_c192_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_c192_intel Checking test 037 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2129,14 +2130,14 @@ Checking test 037 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 531.244126 - 0: The maximum resident set size (KB) = 851592 + 0: The total amount of wall time = 529.140770 + 0: The maximum resident set size (KB) = 859184 Test 037 control_c192_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_c384_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_c384_intel Checking test 038 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2147,14 +2148,14 @@ Checking test 038 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 598.242410 - 0: The maximum resident set size (KB) = 1196176 + 0: The total amount of wall time = 590.185195 + 0: The maximum resident set size (KB) = 1199536 Test 038 control_c384_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_c384gdas_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_c384gdas_intel Checking test 039 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2174,7 +2175,7 @@ Checking test 039 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK @@ -2197,14 +2198,14 @@ Checking test 039 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 523.299488 - 0: The maximum resident set size (KB) = 1349028 + 0: The total amount of wall time = 523.254308 + 0: The maximum resident set size (KB) = 1339444 Test 039 control_c384gdas_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_stochy_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_stochy_intel Checking test 040 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2215,28 +2216,28 @@ Checking test 040 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.830377 - 0: The maximum resident set size (KB) = 655984 + 0: The total amount of wall time = 88.220532 + 0: The maximum resident set size (KB) = 659592 Test 040 control_stochy_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_stochy_restart_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_stochy_restart_intel Checking test 041 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.797459 - 0: The maximum resident set size (KB) = 503004 + 0: The total amount of wall time = 51.543131 + 0: The maximum resident set size (KB) = 507940 Test 041 control_stochy_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_lndp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_lndp_intel Checking test 042 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2247,14 +2248,14 @@ Checking test 042 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.400975 - 0: The maximum resident set size (KB) = 656196 + 0: The total amount of wall time = 83.321342 + 0: The maximum resident set size (KB) = 658892 Test 042 control_lndp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_iovr4_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_iovr4_intel Checking test 043 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2269,14 +2270,14 @@ Checking test 043 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.918329 - 0: The maximum resident set size (KB) = 648468 + 0: The total amount of wall time = 135.682410 + 0: The maximum resident set size (KB) = 653460 Test 043 control_iovr4_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_iovr5_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_iovr5_intel Checking test 044 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2291,14 +2292,14 @@ Checking test 044 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.457777 - 0: The maximum resident set size (KB) = 655896 + 0: The total amount of wall time = 135.993128 + 0: The maximum resident set size (KB) = 648396 Test 044 control_iovr5_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_intel Checking test 045 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2345,14 +2346,14 @@ Checking test 045 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.369400 - 0: The maximum resident set size (KB) = 1627988 + 0: The total amount of wall time = 167.250103 + 0: The maximum resident set size (KB) = 1633920 Test 045 control_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_p8_ugwpv1_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_ugwpv1_intel Checking test 046 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2399,14 +2400,14 @@ Checking test 046 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 159.578330 - 0: The maximum resident set size (KB) = 1625272 + 0: The total amount of wall time = 159.830730 + 0: The maximum resident set size (KB) = 1633780 Test 046 control_p8_ugwpv1_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_restart_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_restart_p8_intel Checking test 047 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2445,14 +2446,14 @@ Checking test 047 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 88.402404 - 0: The maximum resident set size (KB) = 896124 + 0: The total amount of wall time = 90.466824 + 0: The maximum resident set size (KB) = 892936 Test 047 control_restart_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_noqr_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_noqr_p8_intel Checking test 048 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2499,14 +2500,14 @@ Checking test 048 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 161.461826 - 0: The maximum resident set size (KB) = 1612324 + 0: The total amount of wall time = 160.565574 + 0: The maximum resident set size (KB) = 1615488 Test 048 control_noqr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_restart_noqr_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_restart_noqr_p8_intel Checking test 049 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2545,14 +2546,14 @@ Checking test 049 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 85.586101 - 0: The maximum resident set size (KB) = 931544 + 0: The total amount of wall time = 86.332897 + 0: The maximum resident set size (KB) = 928828 Test 049 control_restart_noqr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_decomp_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_decomp_p8_intel Checking test 050 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2595,14 +2596,14 @@ Checking test 050 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.182814 - 0: The maximum resident set size (KB) = 1618612 + 0: The total amount of wall time = 169.381256 + 0: The maximum resident set size (KB) = 1611584 Test 050 control_decomp_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_2threads_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_2threads_p8_intel Checking test 051 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2645,14 +2646,14 @@ Checking test 051 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 174.109479 - 0: The maximum resident set size (KB) = 1712516 + 0: The total amount of wall time = 171.854785 + 0: The maximum resident set size (KB) = 1717128 Test 051 control_2threads_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_p8_lndp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_lndp_intel Checking test 052 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2671,14 +2672,14 @@ Checking test 052 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 299.122119 - 0: The maximum resident set size (KB) = 1627396 + 0: The total amount of wall time = 301.354020 + 0: The maximum resident set size (KB) = 1624044 Test 052 control_p8_lndp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_p8_rrtmgp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_rrtmgp_intel Checking test 053 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2725,14 +2726,14 @@ Checking test 053 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.315831 - 0: The maximum resident set size (KB) = 1694088 + 0: The total amount of wall time = 224.184009 + 0: The maximum resident set size (KB) = 1691512 Test 053 control_p8_rrtmgp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_p8_mynn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_mynn_intel Checking test 054 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2779,14 +2780,14 @@ Checking test 054 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.378252 - 0: The maximum resident set size (KB) = 1629852 + 0: The total amount of wall time = 169.293915 + 0: The maximum resident set size (KB) = 1629992 Test 054 control_p8_mynn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/merra2_thompson_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/merra2_thompson_intel Checking test 055 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2833,14 +2834,14 @@ Checking test 055 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.371375 - 0: The maximum resident set size (KB) = 1643516 + 0: The total amount of wall time = 197.767157 + 0: The maximum resident set size (KB) = 1631796 Test 055 merra2_thompson_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_control_intel Checking test 056 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2851,28 +2852,28 @@ Checking test 056 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.215050 - 0: The maximum resident set size (KB) = 857780 + 0: The total amount of wall time = 296.059980 + 0: The maximum resident set size (KB) = 859848 Test 056 regional_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_restart_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_restart_intel Checking test 057 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 153.135975 - 0: The maximum resident set size (KB) = 1022576 + 0: The total amount of wall time = 155.471064 + 0: The maximum resident set size (KB) = 988296 Test 057 regional_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_decomp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_decomp_intel Checking test 058 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2883,14 +2884,14 @@ Checking test 058 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 317.222100 - 0: The maximum resident set size (KB) = 852548 + 0: The total amount of wall time = 317.786850 + 0: The maximum resident set size (KB) = 852068 Test 058 regional_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_2threads_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_2threads_intel Checking test 059 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2901,14 +2902,14 @@ Checking test 059 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 206.897970 - 0: The maximum resident set size (KB) = 845232 + 0: The total amount of wall time = 210.884786 + 0: The maximum resident set size (KB) = 864060 Test 059 regional_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_noquilt_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_noquilt_intel Checking test 060 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2916,28 +2917,28 @@ Checking test 060 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 292.852719 - 0: The maximum resident set size (KB) = 1363312 + 0: The total amount of wall time = 293.236074 + 0: The maximum resident set size (KB) = 1359252 Test 060 regional_noquilt_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_netcdf_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_netcdf_parallel_intel Checking test 061 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 292.406831 - 0: The maximum resident set size (KB) = 853588 + 0: The total amount of wall time = 294.567591 + 0: The maximum resident set size (KB) = 855680 Test 061 regional_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_2dwrtdecomp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_2dwrtdecomp_intel Checking test 062 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2948,14 +2949,14 @@ Checking test 062 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.569334 - 0: The maximum resident set size (KB) = 858260 + 0: The total amount of wall time = 298.353093 + 0: The maximum resident set size (KB) = 855364 Test 062 regional_2dwrtdecomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_wofs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_wofs_intel Checking test 063 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2966,14 +2967,14 @@ Checking test 063 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 387.094597 - 0: The maximum resident set size (KB) = 1921068 + 0: The total amount of wall time = 387.872943 + 0: The maximum resident set size (KB) = 1919028 Test 063 regional_wofs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_control_intel Checking test 064 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3021,14 @@ Checking test 064 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 455.340108 - 0: The maximum resident set size (KB) = 1090284 + 0: The total amount of wall time = 455.587194 + 0: The maximum resident set size (KB) = 1108696 Test 064 rap_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_spp_sppt_shum_skeb_intel Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3038,14 +3039,14 @@ Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 273.380078 - 0: The maximum resident set size (KB) = 1297556 + 0: The total amount of wall time = 267.829959 + 0: The maximum resident set size (KB) = 1235240 Test 065 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_decomp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_decomp_intel Checking test 066 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3092,14 +3093,14 @@ Checking test 066 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.977116 - 0: The maximum resident set size (KB) = 1034536 + 0: The total amount of wall time = 472.746087 + 0: The maximum resident set size (KB) = 1031056 Test 066 rap_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_2threads_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_2threads_intel Checking test 067 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3146,14 +3147,14 @@ Checking test 067 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.879998 - 0: The maximum resident set size (KB) = 1183428 + 0: The total amount of wall time = 460.601814 + 0: The maximum resident set size (KB) = 1186196 Test 067 rap_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_restart_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_restart_intel Checking test 068 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3192,14 +3193,14 @@ Checking test 068 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.900910 - 0: The maximum resident set size (KB) = 1104576 + 0: The total amount of wall time = 230.904229 + 0: The maximum resident set size (KB) = 1099260 Test 068 rap_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_sfcdiff_intel Checking test 069 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3246,14 +3247,14 @@ Checking test 069 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.161928 - 0: The maximum resident set size (KB) = 1109108 + 0: The total amount of wall time = 450.192953 + 0: The maximum resident set size (KB) = 1103668 Test 069 rap_sfcdiff_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_sfcdiff_decomp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_sfcdiff_decomp_intel Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3300,14 +3301,14 @@ Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 475.436464 - 0: The maximum resident set size (KB) = 1042596 + 0: The total amount of wall time = 472.936899 + 0: The maximum resident set size (KB) = 1031172 Test 070 rap_sfcdiff_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_sfcdiff_restart_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_sfcdiff_restart_intel Checking test 071 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3346,14 +3347,14 @@ Checking test 071 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 339.313974 - 0: The maximum resident set size (KB) = 1138072 + 0: The total amount of wall time = 336.538798 + 0: The maximum resident set size (KB) = 1136652 Test 071 rap_sfcdiff_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_intel Checking test 072 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3400,14 +3401,14 @@ Checking test 072 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.311558 - 0: The maximum resident set size (KB) = 1033132 + 0: The total amount of wall time = 228.518541 + 0: The maximum resident set size (KB) = 1037372 Test 072 hrrr_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_control_decomp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_decomp_intel Checking test 073 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3454,14 +3455,14 @@ Checking test 073 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.831398 - 0: The maximum resident set size (KB) = 1023484 + 0: The total amount of wall time = 248.592295 + 0: The maximum resident set size (KB) = 1022288 Test 073 hrrr_control_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_control_2threads_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_2threads_intel Checking test 074 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3508,28 +3509,28 @@ Checking test 074 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.468477 - 0: The maximum resident set size (KB) = 1108344 + 0: The total amount of wall time = 192.356244 + 0: The maximum resident set size (KB) = 1105804 Test 074 hrrr_control_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_control_restart_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_restart_intel Checking test 075 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 120.777705 - 0: The maximum resident set size (KB) = 997536 + 0: The total amount of wall time = 120.874929 + 0: The maximum resident set size (KB) = 998724 Test 075 hrrr_control_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rrfs_v1beta_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rrfs_v1beta_intel Checking test 076 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3576,14 +3577,14 @@ Checking test 076 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.890596 - 0: The maximum resident set size (KB) = 1092620 + 0: The total amount of wall time = 444.692762 + 0: The maximum resident set size (KB) = 1095508 Test 076 rrfs_v1beta_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rrfs_v1nssl_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rrfs_v1nssl_intel Checking test 077 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3598,14 +3599,14 @@ Checking test 077 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 538.901385 - 0: The maximum resident set size (KB) = 1992084 + 0: The total amount of wall time = 540.486514 + 0: The maximum resident set size (KB) = 1994968 Test 077 rrfs_v1nssl_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rrfs_v1nssl_nohailnoccn_intel Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3620,14 +3621,14 @@ Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.294802 - 0: The maximum resident set size (KB) = 2074408 + 0: The total amount of wall time = 525.511275 + 0: The maximum resident set size (KB) = 2067680 Test 078 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_csawmg_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3638,14 +3639,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 343.235562 - 0: The maximum resident set size (KB) = 747084 + 0: The total amount of wall time = 351.513316 + 0: The maximum resident set size (KB) = 745800 Test 079 control_csawmg_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_csawmgt_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3656,14 +3657,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.396068 - 0: The maximum resident set size (KB) = 745612 + 0: The total amount of wall time = 340.534995 + 0: The maximum resident set size (KB) = 752500 Test 080 control_csawmgt_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_ras_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3674,26 +3675,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 189.112458 - 0: The maximum resident set size (KB) = 688272 + 0: The total amount of wall time = 188.743280 + 0: The maximum resident set size (KB) = 737752 Test 081 control_ras_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_wam_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_wam_intel Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 114.232555 - 0: The maximum resident set size (KB) = 655348 + 0: The total amount of wall time = 118.141813 + 0: The maximum resident set size (KB) = 656728 Test 082 control_wam_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_p8_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3740,14 +3741,14 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 147.492616 - 0: The maximum resident set size (KB) = 1627364 + 0: The total amount of wall time = 148.387190 + 0: The maximum resident set size (KB) = 1626136 Test 083 control_p8_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_control_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3758,14 +3759,14 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 266.053802 - 0: The maximum resident set size (KB) = 853832 + 0: The total amount of wall time = 271.796542 + 0: The maximum resident set size (KB) = 853180 Test 084 regional_control_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3792,364 +3793,364 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 153.667391 - 0: The maximum resident set size (KB) = 819824 + 0: The total amount of wall time = 155.193834 + 0: The maximum resident set size (KB) = 813240 Test 085 control_CubedSphereGrid_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_wrtGauss_netcdf_parallel_debug_intel Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.423654 - 0: The maximum resident set size (KB) = 812068 + 0: The total amount of wall time = 151.563773 + 0: The maximum resident set size (KB) = 813036 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_stochy_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_stochy_debug_intel Checking test 087 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.198331 - 0: The maximum resident set size (KB) = 812660 + 0: The total amount of wall time = 174.802756 + 0: The maximum resident set size (KB) = 817356 Test 087 control_stochy_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_lndp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_lndp_debug_intel Checking test 088 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.302088 - 0: The maximum resident set size (KB) = 817176 + 0: The total amount of wall time = 160.166029 + 0: The maximum resident set size (KB) = 817260 Test 088 control_lndp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_csawmg_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_csawmg_debug_intel Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 236.867090 - 0: The maximum resident set size (KB) = 865272 + 0: The total amount of wall time = 237.175400 + 0: The maximum resident set size (KB) = 866804 Test 089 control_csawmg_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_csawmgt_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_csawmgt_debug_intel Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.658279 - 0: The maximum resident set size (KB) = 808376 + 0: The total amount of wall time = 233.373841 + 0: The maximum resident set size (KB) = 865712 Test 090 control_csawmgt_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_ras_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_ras_debug_intel Checking test 091 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.002725 - 0: The maximum resident set size (KB) = 823648 + 0: The total amount of wall time = 156.913225 + 0: The maximum resident set size (KB) = 829840 Test 091 control_ras_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_diag_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_diag_debug_intel Checking test 092 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.618970 - 0: The maximum resident set size (KB) = 870116 + 0: The total amount of wall time = 158.470835 + 0: The maximum resident set size (KB) = 871404 Test 092 control_diag_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_debug_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_debug_p8_intel Checking test 093 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.429458 - 0: The maximum resident set size (KB) = 1641176 + 0: The total amount of wall time = 158.843232 + 0: The maximum resident set size (KB) = 1648588 Test 093 control_debug_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_debug_intel Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1038.916606 - 0: The maximum resident set size (KB) = 841036 + 0: The total amount of wall time = 1015.316758 + 0: The maximum resident set size (KB) = 840928 Test 094 regional_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_control_debug_intel Checking test 095 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.332524 - 0: The maximum resident set size (KB) = 1201996 + 0: The total amount of wall time = 282.253865 + 0: The maximum resident set size (KB) = 1203932 Test 095 rap_control_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_debug_intel Checking test 096 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.723306 - 0: The maximum resident set size (KB) = 1198828 + 0: The total amount of wall time = 276.221773 + 0: The maximum resident set size (KB) = 1199036 Test 096 hrrr_control_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_gf_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_gf_debug_intel Checking test 097 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.964489 - 0: The maximum resident set size (KB) = 1198948 + 0: The total amount of wall time = 280.954394 + 0: The maximum resident set size (KB) = 1200100 Test 097 hrrr_gf_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_c3_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_c3_debug_intel Checking test 098 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.375580 - 0: The maximum resident set size (KB) = 1203452 + 0: The total amount of wall time = 287.281324 + 0: The maximum resident set size (KB) = 1198072 Test 098 hrrr_c3_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_unified_drag_suite_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_unified_drag_suite_debug_intel Checking test 099 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.954994 - 0: The maximum resident set size (KB) = 1180644 + 0: The total amount of wall time = 279.073560 + 0: The maximum resident set size (KB) = 1203100 Test 099 rap_unified_drag_suite_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_diag_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_diag_debug_intel Checking test 100 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 301.313189 - 0: The maximum resident set size (KB) = 1290580 + 0: The total amount of wall time = 297.623565 + 0: The maximum resident set size (KB) = 1292588 Test 100 rap_diag_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_cires_ugwp_debug_intel Checking test 101 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.751034 - 0: The maximum resident set size (KB) = 1198164 + 0: The total amount of wall time = 295.169373 + 0: The maximum resident set size (KB) = 1202396 Test 101 rap_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_unified_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_unified_ugwp_debug_intel Checking test 102 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.948486 - 0: The maximum resident set size (KB) = 1195976 + 0: The total amount of wall time = 289.848392 + 0: The maximum resident set size (KB) = 1209412 Test 102 rap_unified_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_lndp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_lndp_debug_intel Checking test 103 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.895138 - 0: The maximum resident set size (KB) = 1200924 + 0: The total amount of wall time = 280.601213 + 0: The maximum resident set size (KB) = 1201944 Test 103 rap_lndp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_progcld_thompson_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_progcld_thompson_debug_intel Checking test 104 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.080311 - 0: The maximum resident set size (KB) = 1198768 + 0: The total amount of wall time = 285.910159 + 0: The maximum resident set size (KB) = 1203068 Test 104 rap_progcld_thompson_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_noah_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_noah_debug_intel Checking test 105 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.695400 - 0: The maximum resident set size (KB) = 1202400 + 0: The total amount of wall time = 281.531014 + 0: The maximum resident set size (KB) = 1202876 Test 105 rap_noah_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_sfcdiff_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_sfcdiff_debug_intel Checking test 106 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.152765 - 0: The maximum resident set size (KB) = 1199732 + 0: The total amount of wall time = 284.702054 + 0: The maximum resident set size (KB) = 1211116 Test 106 rap_sfcdiff_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 470.191425 - 0: The maximum resident set size (KB) = 1200512 + 0: The total amount of wall time = 471.891647 + 0: The maximum resident set size (KB) = 1201680 Test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rrfs_v1beta_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rrfs_v1beta_debug_intel Checking test 108 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.421347 - 0: The maximum resident set size (KB) = 1205448 + 0: The total amount of wall time = 277.451865 + 0: The maximum resident set size (KB) = 1200684 Test 108 rrfs_v1beta_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_clm_lake_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_clm_lake_debug_intel Checking test 109 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 363.242546 - 0: The maximum resident set size (KB) = 1190896 + 0: The total amount of wall time = 357.692709 + 0: The maximum resident set size (KB) = 1209208 Test 109 rap_clm_lake_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_flake_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_flake_debug_intel Checking test 110 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.957975 - 0: The maximum resident set size (KB) = 1199616 + 0: The total amount of wall time = 280.392311 + 0: The maximum resident set size (KB) = 1196828 Test 110 rap_flake_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/gnv1_c96_no_nest_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/gnv1_c96_no_nest_debug_intel Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4190,26 +4191,26 @@ Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 501.395970 - 0: The maximum resident set size (KB) = 1205872 + 0: The total amount of wall time = 495.115111 + 0: The maximum resident set size (KB) = 1203440 Test 111 gnv1_c96_no_nest_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_wam_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_wam_debug_intel Checking test 112 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 289.146668 - 0: The maximum resident set size (KB) = 511440 + 0: The total amount of wall time = 286.352549 + 0: The maximum resident set size (KB) = 529600 Test 112 control_wam_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4220,14 +4221,14 @@ Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 257.502604 - 0: The maximum resident set size (KB) = 1162752 + 0: The total amount of wall time = 253.608185 + 0: The maximum resident set size (KB) = 1156884 Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_control_dyn32_phy32_intel Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4274,14 +4275,14 @@ Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 375.715750 - 0: The maximum resident set size (KB) = 1051784 + 0: The total amount of wall time = 371.644639 + 0: The maximum resident set size (KB) = 1046848 Test 114 rap_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_dyn32_phy32_intel Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4328,14 +4329,14 @@ Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.077622 - 0: The maximum resident set size (KB) = 994700 + 0: The total amount of wall time = 192.236591 + 0: The maximum resident set size (KB) = 968924 Test 115 hrrr_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_2threads_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_2threads_dyn32_phy32_intel Checking test 116 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4382,14 +4383,14 @@ Checking test 116 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 390.798800 - 0: The maximum resident set size (KB) = 1090956 + 0: The total amount of wall time = 389.682360 + 0: The maximum resident set size (KB) = 1091148 Test 116 rap_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_control_2threads_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_2threads_dyn32_phy32_intel Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4436,14 +4437,14 @@ Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.800994 - 0: The maximum resident set size (KB) = 964848 + 0: The total amount of wall time = 167.957295 + 0: The maximum resident set size (KB) = 958140 Test 117 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_control_decomp_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_decomp_dyn32_phy32_intel Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4490,14 +4491,14 @@ Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 205.678054 - 0: The maximum resident set size (KB) = 918464 + 0: The total amount of wall time = 205.601097 + 0: The maximum resident set size (KB) = 936296 Test 118 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_restart_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_restart_dyn32_phy32_intel Checking test 119 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4536,28 +4537,28 @@ Checking test 119 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.757137 - 0: The maximum resident set size (KB) = 1029236 + 0: The total amount of wall time = 278.138280 + 0: The maximum resident set size (KB) = 1029996 Test 119 rap_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_control_restart_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_restart_dyn32_phy32_intel Checking test 120 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 104.895453 - 0: The maximum resident set size (KB) = 930900 + 0: The total amount of wall time = 102.153701 + 0: The maximum resident set size (KB) = 936448 Test 120 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/conus13km_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/conus13km_control_intel Checking test 121 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4573,40 +4574,40 @@ Checking test 121 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 114.038132 - 0: The maximum resident set size (KB) = 1199816 + 0: The total amount of wall time = 116.103507 + 0: The maximum resident set size (KB) = 1203792 Test 121 conus13km_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/conus13km_2threads_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/conus13km_2threads_intel Checking test 122 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 50.623231 - 0: The maximum resident set size (KB) = 1124024 + 0: The total amount of wall time = 49.449560 + 0: The maximum resident set size (KB) = 1119732 Test 122 conus13km_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/conus13km_restart_mismatch_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/conus13km_restart_mismatch_intel Checking test 123 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 64.856680 - 0: The maximum resident set size (KB) = 1111120 + 0: The total amount of wall time = 65.169105 + 0: The maximum resident set size (KB) = 1108792 Test 123 conus13km_restart_mismatch_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_control_dyn64_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_control_dyn64_phy32_intel Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4653,42 +4654,42 @@ Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 245.599426 - 0: The maximum resident set size (KB) = 993928 + 0: The total amount of wall time = 247.933551 + 0: The maximum resident set size (KB) = 990316 Test 124 rap_control_dyn64_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_control_debug_dyn32_phy32_intel Checking test 125 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.004883 - 0: The maximum resident set size (KB) = 1082328 + 0: The total amount of wall time = 282.284641 + 0: The maximum resident set size (KB) = 1081844 Test 125 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_debug_dyn32_phy32_intel Checking test 126 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.539748 - 0: The maximum resident set size (KB) = 1075364 + 0: The total amount of wall time = 283.973838 + 0: The maximum resident set size (KB) = 1080108 Test 126 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/conus13km_debug_intel Checking test 127 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4702,14 +4703,14 @@ Checking test 127 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 857.430202 - 0: The maximum resident set size (KB) = 1226840 + 0: The total amount of wall time = 850.192416 + 0: The maximum resident set size (KB) = 1225408 Test 127 conus13km_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/conus13km_debug_qr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/conus13km_debug_qr_intel Checking test 128 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4723,81 +4724,81 @@ Checking test 128 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 860.401600 - 0: The maximum resident set size (KB) = 930452 + 0: The total amount of wall time = 837.995998 + 0: The maximum resident set size (KB) = 933124 Test 128 conus13km_debug_qr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/conus13km_debug_2threads_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/conus13km_debug_2threads_intel Checking test 129 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 490.504214 - 0: The maximum resident set size (KB) = 1153100 + 0: The total amount of wall time = 491.078178 + 0: The maximum resident set size (KB) = 1155204 Test 129 conus13km_debug_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/conus13km_radar_tten_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/conus13km_radar_tten_debug_intel Checking test 130 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 852.722056 - 0: The maximum resident set size (KB) = 1300704 + 0: The total amount of wall time = 930.494572 + 0: The maximum resident set size (KB) = 1291772 Test 130 conus13km_radar_tten_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_control_dyn64_phy32_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_control_dyn64_phy32_debug_intel Checking test 131 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.648213 - 0: The maximum resident set size (KB) = 1122692 + 0: The total amount of wall time = 284.137751 + 0: The maximum resident set size (KB) = 1128160 Test 131 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_atm_intel Checking test 132 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 318.466608 - 0: The maximum resident set size (KB) = 740208 + 0: The total amount of wall time = 312.869667 + 0: The maximum resident set size (KB) = 739984 Test 132 hafs_regional_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_atm_thompson_gfdlsf_intel Checking test 133 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 344.718073 - 0: The maximum resident set size (KB) = 1127468 + 0: The total amount of wall time = 334.731662 + 0: The maximum resident set size (KB) = 1118808 Test 133 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_atm_ocn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_atm_ocn_intel Checking test 134 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4806,14 +4807,14 @@ Checking test 134 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 400.850818 - 0: The maximum resident set size (KB) = 830020 + 0: The total amount of wall time = 400.904579 + 0: The maximum resident set size (KB) = 827352 Test 134 hafs_regional_atm_ocn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_atm_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_atm_wav_intel Checking test 135 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4822,14 +4823,14 @@ Checking test 135 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 766.287544 - 0: The maximum resident set size (KB) = 865280 + 0: The total amount of wall time = 763.867549 + 0: The maximum resident set size (KB) = 860584 Test 135 hafs_regional_atm_wav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_atm_ocn_wav_intel Checking test 136 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4840,14 +4841,14 @@ Checking test 136 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 870.306811 - 0: The maximum resident set size (KB) = 878004 + 0: The total amount of wall time = 854.263696 + 0: The maximum resident set size (KB) = 880316 Test 136 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_1nest_atm_intel Checking test 137 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4865,18 +4866,18 @@ Checking test 137 hafs_regional_1nest_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 356.126355 - 0: The maximum resident set size (KB) = 452724 + 0: The total amount of wall time = 353.724207 + 0: The maximum resident set size (KB) = 504352 Test 137 hafs_regional_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_telescopic_2nests_atm_intel Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4885,14 +4886,14 @@ Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 448.449383 - 0: The maximum resident set size (KB) = 521036 + 0: The total amount of wall time = 433.392755 + 0: The maximum resident set size (KB) = 524856 Test 138 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_global_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_global_1nest_atm_intel Checking test 139 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4913,7 +4914,7 @@ Checking test 139 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK @@ -4929,7 +4930,7 @@ Checking test 139 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK @@ -4939,14 +4940,14 @@ Checking test 139 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 177.408139 - 0: The maximum resident set size (KB) = 372648 + 0: The total amount of wall time = 172.103736 + 0: The maximum resident set size (KB) = 375308 Test 139 hafs_global_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_global_multiple_4nests_atm_intel Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4978,17 +4979,17 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK @@ -5028,14 +5029,14 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 463.182505 - 0: The maximum resident set size (KB) = 472928 + 0: The total amount of wall time = 457.358617 + 0: The maximum resident set size (KB) = 481964 Test 140 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_specified_moving_1nest_atm_intel Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5044,14 +5045,14 @@ Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 240.322150 - 0: The maximum resident set size (KB) = 526944 + 0: The total amount of wall time = 237.273960 + 0: The maximum resident set size (KB) = 531680 Test 141 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_storm_following_1nest_atm_intel Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5073,14 +5074,14 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 229.529003 - 0: The maximum resident set size (KB) = 529948 + 0: The total amount of wall time = 222.459335 + 0: The maximum resident set size (KB) = 533628 Test 142 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5089,28 +5090,28 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 311.907787 - 0: The maximum resident set size (KB) = 590076 + 0: The total amount of wall time = 305.071769 + 0: The maximum resident set size (KB) = 537344 Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_global_storm_following_1nest_atm_intel Checking test 144 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 74.421079 - 0: The maximum resident set size (KB) = 399540 + 0: The total amount of wall time = 73.083308 + 0: The maximum resident set size (KB) = 402184 Test 144 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/gnv1_nested_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/gnv1_nested_intel Checking test 145 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5120,18 +5121,18 @@ Checking test 145 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK @@ -5140,14 +5141,14 @@ Checking test 145 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK @@ -5157,28 +5158,28 @@ Checking test 145 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 264.103963 - 0: The maximum resident set size (KB) = 808564 + 0: The total amount of wall time = 257.256221 + 0: The maximum resident set size (KB) = 803116 Test 145 gnv1_nested_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 775.282837 - 0: The maximum resident set size (KB) = 570496 + 0: The total amount of wall time = 766.036949 + 0: The maximum resident set size (KB) = 573372 Test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5189,162 +5190,162 @@ Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 556.425168 - 0: The maximum resident set size (KB) = 664396 + 0: The total amount of wall time = 556.049326 + 0: The maximum resident set size (KB) = 674728 Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_docn_intel -Checking test 148 hafs_regional_docn_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_docn_intel +Checking test 150 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 373.450358 - 0: The maximum resident set size (KB) = 830384 + 0: The total amount of wall time = 360.745329 + 0: The maximum resident set size (KB) = 828192 -Test 148 hafs_regional_docn_intel PASS +Test 150 hafs_regional_docn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_docn_oisst_intel -Checking test 149 hafs_regional_docn_oisst_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_docn_oisst_intel +Checking test 151 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 374.018485 - 0: The maximum resident set size (KB) = 815584 + 0: The total amount of wall time = 364.519175 + 0: The maximum resident set size (KB) = 812092 -Test 149 hafs_regional_docn_oisst_intel PASS +Test 151 hafs_regional_docn_oisst_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_datm_cdeps_intel -Checking test 150 hafs_regional_datm_cdeps_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_datm_cdeps_intel +Checking test 152 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 944.415548 - 0: The maximum resident set size (KB) = 1209776 + 0: The total amount of wall time = 953.146730 + 0: The maximum resident set size (KB) = 1211268 -Test 150 hafs_regional_datm_cdeps_intel PASS +Test 152 hafs_regional_datm_cdeps_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_control_cfsr_intel -Checking test 151 datm_cdeps_control_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_control_cfsr_intel +Checking test 153 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.162227 - 0: The maximum resident set size (KB) = 1123328 + 0: The total amount of wall time = 146.431118 + 0: The maximum resident set size (KB) = 1130160 -Test 151 datm_cdeps_control_cfsr_intel PASS +Test 153 datm_cdeps_control_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_restart_cfsr_intel -Checking test 152 datm_cdeps_restart_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_restart_cfsr_intel +Checking test 154 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.053508 - 0: The maximum resident set size (KB) = 1078516 + 0: The total amount of wall time = 89.944488 + 0: The maximum resident set size (KB) = 1091800 -Test 152 datm_cdeps_restart_cfsr_intel PASS +Test 154 datm_cdeps_restart_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_control_gefs_intel -Checking test 153 datm_cdeps_control_gefs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_control_gefs_intel +Checking test 155 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.279443 - 0: The maximum resident set size (KB) = 1014224 + 0: The total amount of wall time = 143.493663 + 0: The maximum resident set size (KB) = 1013004 -Test 153 datm_cdeps_control_gefs_intel PASS +Test 155 datm_cdeps_control_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_iau_gefs_intel -Checking test 154 datm_cdeps_iau_gefs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_iau_gefs_intel +Checking test 156 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.893383 - 0: The maximum resident set size (KB) = 1011360 + 0: The total amount of wall time = 148.580964 + 0: The maximum resident set size (KB) = 1009740 -Test 154 datm_cdeps_iau_gefs_intel PASS +Test 156 datm_cdeps_iau_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_stochy_gefs_intel -Checking test 155 datm_cdeps_stochy_gefs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_stochy_gefs_intel +Checking test 157 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.717302 - 0: The maximum resident set size (KB) = 1009324 + 0: The total amount of wall time = 149.264839 + 0: The maximum resident set size (KB) = 1015556 -Test 155 datm_cdeps_stochy_gefs_intel PASS +Test 157 datm_cdeps_stochy_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_ciceC_cfsr_intel -Checking test 156 datm_cdeps_ciceC_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_ciceC_cfsr_intel +Checking test 158 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.906373 - 0: The maximum resident set size (KB) = 1131996 + 0: The total amount of wall time = 147.843649 + 0: The maximum resident set size (KB) = 1130784 -Test 156 datm_cdeps_ciceC_cfsr_intel PASS +Test 158 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_bulk_cfsr_intel -Checking test 157 datm_cdeps_bulk_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_bulk_cfsr_intel +Checking test 159 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.976233 - 0: The maximum resident set size (KB) = 1119908 + 0: The total amount of wall time = 151.428024 + 0: The maximum resident set size (KB) = 1119756 -Test 157 datm_cdeps_bulk_cfsr_intel PASS +Test 159 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_bulk_gefs_intel -Checking test 158 datm_cdeps_bulk_gefs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_bulk_gefs_intel +Checking test 160 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.229346 - 0: The maximum resident set size (KB) = 1013676 + 0: The total amount of wall time = 143.124314 + 0: The maximum resident set size (KB) = 1012792 -Test 158 datm_cdeps_bulk_gefs_intel PASS +Test 160 datm_cdeps_bulk_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_mx025_cfsr_intel -Checking test 159 datm_cdeps_mx025_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_mx025_cfsr_intel +Checking test 161 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5352,15 +5353,15 @@ Checking test 159 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 341.331136 - 0: The maximum resident set size (KB) = 1051452 + 0: The total amount of wall time = 342.329502 + 0: The maximum resident set size (KB) = 1062936 -Test 159 datm_cdeps_mx025_cfsr_intel PASS +Test 161 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_mx025_gefs_intel -Checking test 160 datm_cdeps_mx025_gefs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_mx025_gefs_intel +Checking test 162 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5368,78 +5369,78 @@ Checking test 160 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 336.710529 - 0: The maximum resident set size (KB) = 1039284 + 0: The total amount of wall time = 333.524588 + 0: The maximum resident set size (KB) = 1040412 -Test 160 datm_cdeps_mx025_gefs_intel PASS +Test 162 datm_cdeps_mx025_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_multiple_files_cfsr_intel -Checking test 161 datm_cdeps_multiple_files_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_multiple_files_cfsr_intel +Checking test 163 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.428743 - 0: The maximum resident set size (KB) = 1126664 + 0: The total amount of wall time = 146.279752 + 0: The maximum resident set size (KB) = 1125476 -Test 161 datm_cdeps_multiple_files_cfsr_intel PASS +Test 163 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_3072x1536_cfsr_intel -Checking test 162 datm_cdeps_3072x1536_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_3072x1536_cfsr_intel +Checking test 164 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 203.373275 - 0: The maximum resident set size (KB) = 2413568 + 0: The total amount of wall time = 202.880101 + 0: The maximum resident set size (KB) = 2439448 -Test 162 datm_cdeps_3072x1536_cfsr_intel PASS +Test 164 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_gfs_intel -Checking test 163 datm_cdeps_gfs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_gfs_intel +Checking test 165 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 207.730143 - 0: The maximum resident set size (KB) = 2486028 + 0: The total amount of wall time = 213.231501 + 0: The maximum resident set size (KB) = 2454844 -Test 163 datm_cdeps_gfs_intel PASS +Test 165 datm_cdeps_gfs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_debug_cfsr_intel -Checking test 164 datm_cdeps_debug_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_debug_cfsr_intel +Checking test 166 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 368.109796 - 0: The maximum resident set size (KB) = 1052592 + 0: The total amount of wall time = 355.357397 + 0: The maximum resident set size (KB) = 1045600 -Test 164 datm_cdeps_debug_cfsr_intel PASS +Test 166 datm_cdeps_debug_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_control_cfsr_faster_intel -Checking test 165 datm_cdeps_control_cfsr_faster_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_control_cfsr_faster_intel +Checking test 167 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.254012 - 0: The maximum resident set size (KB) = 1125856 + 0: The total amount of wall time = 146.589452 + 0: The maximum resident set size (KB) = 1139220 -Test 165 datm_cdeps_control_cfsr_faster_intel PASS +Test 167 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_lnd_gswp3_intel -Checking test 166 datm_cdeps_lnd_gswp3_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_lnd_gswp3_intel +Checking test 168 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5447,15 +5448,15 @@ Checking test 166 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 39.369739 - 0: The maximum resident set size (KB) = 251696 + 0: The total amount of wall time = 38.604186 + 0: The maximum resident set size (KB) = 262260 -Test 166 datm_cdeps_lnd_gswp3_intel PASS +Test 168 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_lnd_era5_intel -Checking test 167 datm_cdeps_lnd_era5_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_lnd_era5_intel +Checking test 169 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5463,15 +5464,15 @@ Checking test 167 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 39.585880 - 0: The maximum resident set size (KB) = 323980 + 0: The total amount of wall time = 39.558001 + 0: The maximum resident set size (KB) = 326640 -Test 167 datm_cdeps_lnd_era5_intel PASS +Test 169 datm_cdeps_lnd_era5_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_lnd_era5_rst_intel -Checking test 168 datm_cdeps_lnd_era5_rst_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_lnd_era5_rst_intel +Checking test 170 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5479,15 +5480,15 @@ Checking test 168 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 23.235294 - 0: The maximum resident set size (KB) = 327276 + 0: The total amount of wall time = 21.244567 + 0: The maximum resident set size (KB) = 321412 -Test 168 datm_cdeps_lnd_era5_rst_intel PASS +Test 170 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_p8_atmlnd_sbs_intel -Checking test 169 control_p8_atmlnd_sbs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_atmlnd_sbs_intel +Checking test 171 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5575,15 +5576,15 @@ Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 245.802205 - 0: The maximum resident set size (KB) = 1609324 + 0: The total amount of wall time = 243.719275 + 0: The maximum resident set size (KB) = 1608580 -Test 169 control_p8_atmlnd_sbs_intel PASS +Test 171 control_p8_atmlnd_sbs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_p8_atmlnd_intel -Checking test 170 control_p8_atmlnd_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_atmlnd_intel +Checking test 172 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5671,15 +5672,15 @@ Checking test 170 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 244.222441 - 0: The maximum resident set size (KB) = 1601188 + 0: The total amount of wall time = 242.390820 + 0: The maximum resident set size (KB) = 1598724 -Test 170 control_p8_atmlnd_intel PASS +Test 172 control_p8_atmlnd_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_restart_p8_atmlnd_intel -Checking test 171 control_restart_p8_atmlnd_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_restart_p8_atmlnd_intel +Checking test 173 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5699,15 +5700,15 @@ Checking test 171 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 128.446274 - 0: The maximum resident set size (KB) = 895152 + 0: The total amount of wall time = 126.452301 + 0: The maximum resident set size (KB) = 900380 -Test 171 control_restart_p8_atmlnd_intel PASS +Test 173 control_restart_p8_atmlnd_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/atmwav_control_noaero_p8_intel -Checking test 172 atmwav_control_noaero_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/atmwav_control_noaero_p8_intel +Checking test 174 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5749,15 +5750,15 @@ Checking test 172 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 92.639479 - 0: The maximum resident set size (KB) = 1670564 + 0: The total amount of wall time = 93.223030 + 0: The maximum resident set size (KB) = 1667612 -Test 172 atmwav_control_noaero_p8_intel PASS +Test 174 atmwav_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_atmwav_intel -Checking test 173 control_atmwav_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_atmwav_intel +Checking test 175 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5800,15 +5801,15 @@ Checking test 173 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 89.509031 - 0: The maximum resident set size (KB) = 619160 + 0: The total amount of wall time = 88.561386 + 0: The maximum resident set size (KB) = 675648 -Test 173 control_atmwav_intel PASS +Test 175 control_atmwav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/atmaero_control_p8_intel -Checking test 174 atmaero_control_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/atmaero_control_p8_intel +Checking test 176 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5851,15 +5852,15 @@ Checking test 174 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.094352 - 0: The maximum resident set size (KB) = 3025384 + 0: The total amount of wall time = 224.873739 + 0: The maximum resident set size (KB) = 3028680 -Test 174 atmaero_control_p8_intel PASS +Test 176 atmaero_control_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/atmaero_control_p8_rad_intel -Checking test 175 atmaero_control_p8_rad_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/atmaero_control_p8_rad_intel +Checking test 177 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5902,15 +5903,15 @@ Checking test 175 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 273.007531 - 0: The maximum resident set size (KB) = 3089444 + 0: The total amount of wall time = 274.747097 + 0: The maximum resident set size (KB) = 3091436 -Test 175 atmaero_control_p8_rad_intel PASS +Test 177 atmaero_control_p8_rad_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/atmaero_control_p8_rad_micro_intel -Checking test 176 atmaero_control_p8_rad_micro_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/atmaero_control_p8_rad_micro_intel +Checking test 178 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5953,33 +5954,94 @@ Checking test 176 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 289.307274 - 0: The maximum resident set size (KB) = 3111312 + 0: The total amount of wall time = 287.152060 + 0: The maximum resident set size (KB) = 3109360 -Test 176 atmaero_control_p8_rad_micro_intel PASS +Test 178 atmaero_control_p8_rad_micro_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_atmaq_debug_intel -Checking test 177 regional_atmaq_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_atmaq_debug_intel +Checking test 179 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK Comparing RESTART/20190801.130000.coupler.res .........OK Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1252.410677 - 0: The maximum resident set size (KB) = 4390364 + 0: The total amount of wall time = 1191.414389 + 0: The maximum resident set size (KB) = 4584744 + +Test 179 regional_atmaq_debug_intel PASS + +FAILED TESTS: +hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel 148 failed in run_test +hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel 149 failed in run_test + +REGRESSION TEST FAILED +Thu Feb 1 23:30:49 CST 2024 +Elapsed time: 01h:29m:19s. Have a nice day! +Fri Feb 2 09:10:24 CST 2024 +Start Regression test + +Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) + 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) + 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) + 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile hafs_mom6w_intel elapsed time 756 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_faster_intel elapsed time 775 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_368563/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 412.473254 + 0: The maximum resident set size (KB) = 750244 + +Test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_368563/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 569.198920 + 0: The maximum resident set size (KB) = 751644 -Test 177 regional_atmaq_debug_intel PASS +Test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 31 14:34:24 CST 2024 -Elapsed time: 02h:11m:04s. Have a nice day! +Fri Feb 2 09:37:47 CST 2024 +Elapsed time: 00h:27m:25s. Have a nice day! From b266c95cace23bab6ac1abeedfc3018db5cd247a Mon Sep 17 00:00:00 2001 From: zach1221 Date: Fri, 2 Feb 2024 10:17:43 -0600 Subject: [PATCH 50/63] add hercules RT logs: passed --- tests/logs/RegressionTests_hercules.log | 2501 +++++++++++------------ 1 file changed, 1233 insertions(+), 1268 deletions(-) diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 4645313e57..ce4e5b8c8c 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,75 +1,76 @@ -Wed Jan 31 14:48:57 CST 2024 +Thu Feb 1 10:00:32 PM CST 2024 Start Regression test -Testing UFSWM Hash: 2d9959c5ab71b771c51e1d5995792df7c00e0a9c +Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 7437f73df4b43e8924b6493c5067544af097ad78 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g7437f73) + eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b7587dfeacd95f43da0595dee42b78a2d78653e9 FV3 (remotes/origin/feature/hafsv2_baseline_with_ssc) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atm_debug_dyn32_intel elapsed time 237 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 397 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 418 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 672 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 693 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 479 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 550 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 267 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 414 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 202 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 410 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 477 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 530 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 604 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 406 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 198 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 314 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 955 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 301 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 48 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 584 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 250 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 647 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 634 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 224 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 542 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 286 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 223 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 416 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 268 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 409 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 532 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 943 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 540 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 329 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 632 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 502 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 244 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 979 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 934 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 683 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 347 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1028 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 711 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 266 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 777 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 1125 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 631 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 245 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 384 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 440 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 154 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 358 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 226 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 281 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 278 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 282 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 380 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 565 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 216 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 529 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 603 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 594 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 384 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 212 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 337 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 853 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 372 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 57 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 611 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 632 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 226 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 634 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 608 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 201 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 544 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 241 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 375 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 394 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 413 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 599 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 949 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 569 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 719 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 402 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1054 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 303 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 401 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 792 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 987 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 758 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 388 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 700 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 174 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 265 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 869 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 960 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 144 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 368 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_p8_mixedmode_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -134,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 476.076373 - 0: The maximum resident set size (KB) = 1891652 + 0: The total amount of wall time = 439.484554 + 0: The maximum resident set size (KB) = 1893456 -Test 001 cpld_control_p8_mixedmode_intel PASS Tries: 2 +Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -205,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 797.084049 - 0: The maximum resident set size (KB) = 1765172 + 0: The total amount of wall time = 793.090238 + 0: The maximum resident set size (KB) = 1771848 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_gfsv17_iau_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -258,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 835.153360 - 0: The maximum resident set size (KB) = 2189972 + 0: The total amount of wall time = 833.273875 + 0: The maximum resident set size (KB) = 2179364 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_restart_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -318,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 387.471422 - 0: The maximum resident set size (KB) = 1180200 + 0: The total amount of wall time = 372.679870 + 0: The maximum resident set size (KB) = 1176428 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_mpi_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -389,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 896.751138 - 0: The maximum resident set size (KB) = 1685012 + 0: The total amount of wall time = 901.582170 + 0: The maximum resident set size (KB) = 1681304 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_debug_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -448,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1212.767373 - 0: The maximum resident set size (KB) = 1725936 + 0: The total amount of wall time = 1209.196677 + 0: The maximum resident set size (KB) = 1734016 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -520,14 +521,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 443.764221 - 0: The maximum resident set size (KB) = 2083176 + 0: The total amount of wall time = 447.598959 + 0: The maximum resident set size (KB) = 2143388 Test 007 cpld_control_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_restart_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -580,14 +581,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 246.372286 - 0: The maximum resident set size (KB) = 1980968 + 0: The total amount of wall time = 243.418353 + 0: The maximum resident set size (KB) = 1956644 Test 008 cpld_restart_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_qr_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -652,14 +653,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 454.457720 - 0: The maximum resident set size (KB) = 1988052 + 0: The total amount of wall time = 447.668426 + 0: The maximum resident set size (KB) = 1988964 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_restart_qr_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -712,14 +713,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 246.249140 - 0: The maximum resident set size (KB) = 1735208 + 0: The total amount of wall time = 246.785889 + 0: The maximum resident set size (KB) = 1733980 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_2threads_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -772,14 +773,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 521.841303 - 0: The maximum resident set size (KB) = 2502488 + 0: The total amount of wall time = 520.457736 + 0: The maximum resident set size (KB) = 2500948 Test 011 cpld_2threads_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_decomp_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -832,14 +833,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 476.854177 - 0: The maximum resident set size (KB) = 2059988 + 0: The total amount of wall time = 448.912275 + 0: The maximum resident set size (KB) = 2082960 -Test 012 cpld_decomp_p8_intel PASS Tries: 2 +Test 012 cpld_decomp_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_mpi_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -892,14 +893,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 408.125857 - 0: The maximum resident set size (KB) = 1900564 + 0: The total amount of wall time = 372.316380 + 0: The maximum resident set size (KB) = 1893380 -Test 013 cpld_mpi_p8_intel PASS Tries: 2 +Test 013 cpld_mpi_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_ciceC_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -964,14 +965,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 476.541673 - 0: The maximum resident set size (KB) = 2078536 + 0: The total amount of wall time = 437.237906 + 0: The maximum resident set size (KB) = 2084452 -Test 014 cpld_control_ciceC_p8_intel PASS Tries: 2 +Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_c192_p8_intel Checking test 015 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1024,14 +1025,14 @@ Checking test 015 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 914.200222 - 0: The maximum resident set size (KB) = 2805352 + 0: The total amount of wall time = 900.935256 + 0: The maximum resident set size (KB) = 2803012 Test 015 cpld_control_c192_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_restart_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_restart_c192_p8_intel Checking test 016 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1084,14 +1085,14 @@ Checking test 016 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 338.460128 - 0: The maximum resident set size (KB) = 2923900 + 0: The total amount of wall time = 341.271742 + 0: The maximum resident set size (KB) = 2928692 Test 016 cpld_restart_c192_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_bmark_p8_intel Checking test 017 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1139,14 +1140,14 @@ Checking test 017 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 519.021838 - 0: The maximum resident set size (KB) = 3627388 + 0: The total amount of wall time = 514.528403 + 0: The maximum resident set size (KB) = 3630092 Test 017 cpld_bmark_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_restart_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_restart_bmark_p8_intel Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1194,14 +1195,14 @@ Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.137727 - 0: The maximum resident set size (KB) = 3614712 + 0: The total amount of wall time = 340.551144 + 0: The maximum resident set size (KB) = 3617288 Test 018 cpld_restart_bmark_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_s2sa_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_s2sa_p8_intel Checking test 019 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1252,14 +1253,14 @@ Checking test 019 cpld_s2sa_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 287.933326 - 0: The maximum resident set size (KB) = 2031440 + 0: The total amount of wall time = 286.309861 + 0: The maximum resident set size (KB) = 2057880 -Test 019 cpld_s2sa_p8_intel PASS Tries: 2 +Test 019 cpld_s2sa_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_noaero_p8_intel Checking test 020 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1323,14 +1324,14 @@ Checking test 020 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 411.970893 - 0: The maximum resident set size (KB) = 1763084 + 0: The total amount of wall time = 404.904539 + 0: The maximum resident set size (KB) = 1784052 Test 020 cpld_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_nowave_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_nowave_noaero_p8_intel Checking test 021 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1392,14 +1393,14 @@ Checking test 021 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 232.350037 - 0: The maximum resident set size (KB) = 1827540 + 0: The total amount of wall time = 226.016074 + 0: The maximum resident set size (KB) = 1822120 Test 021 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_debug_p8_intel Checking test 022 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1452,14 +1453,14 @@ Checking test 022 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 398.536000 - 0: The maximum resident set size (KB) = 2054648 + 0: The total amount of wall time = 398.678941 + 0: The maximum resident set size (KB) = 2067244 Test 022 cpld_debug_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_debug_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_debug_noaero_p8_intel Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1511,14 +1512,14 @@ Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 269.208683 - 0: The maximum resident set size (KB) = 1799664 + 0: The total amount of wall time = 271.280051 + 0: The maximum resident set size (KB) = 1791540 Test 023 cpld_debug_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_noaero_p8_agrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_noaero_p8_agrid_intel Checking test 024 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1580,14 +1581,14 @@ Checking test 024 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 229.858121 - 0: The maximum resident set size (KB) = 1827756 + 0: The total amount of wall time = 228.957639 + 0: The maximum resident set size (KB) = 1812916 Test 024 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_c48_intel Checking test 025 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1637,14 +1638,14 @@ Checking test 025 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 428.843639 - 0: The maximum resident set size (KB) = 2841080 + 0: The total amount of wall time = 429.186280 + 0: The maximum resident set size (KB) = 2831084 Test 025 cpld_control_c48_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_p8_faster_intel Checking test 026 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1709,82 +1710,215 @@ Checking test 026 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 477.014058 - 0: The maximum resident set size (KB) = 2094876 + 0: The total amount of wall time = 427.219562 + 0: The maximum resident set size (KB) = 2063272 -Test 026 cpld_control_p8_faster_intel PASS Tries: 2 +Test 026 cpld_control_p8_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_pdlib_p8_intel Checking test 027 cpld_control_pdlib_p8_intel results .... - Comparing sfcf021.tile1.nc ............MISSING file - Comparing sfcf021.tile2.nc ............MISSING file - Comparing sfcf021.tile3.nc ............MISSING file - Comparing sfcf021.tile4.nc ............MISSING file - Comparing sfcf021.tile5.nc ............MISSING file - Comparing sfcf021.tile6.nc ............MISSING file - Comparing atmf021.tile1.nc ............MISSING file - Comparing atmf021.tile2.nc ............MISSING file - Comparing atmf021.tile3.nc ............MISSING file - Comparing atmf021.tile4.nc ............MISSING file - Comparing atmf021.tile5.nc ............MISSING file - Comparing atmf021.tile6.nc ............MISSING file - Comparing sfcf024.tile1.nc ............MISSING file - Comparing sfcf024.tile2.nc ............MISSING file - Comparing sfcf024.tile3.nc ............MISSING file - Comparing sfcf024.tile4.nc ............MISSING file - Comparing sfcf024.tile5.nc ............MISSING file - Comparing sfcf024.tile6.nc ............MISSING file - Comparing atmf024.tile1.nc ............MISSING file - Comparing atmf024.tile2.nc ............MISSING file - Comparing atmf024.tile3.nc ............MISSING file - Comparing atmf024.tile4.nc ............MISSING file - Comparing atmf024.tile5.nc ............MISSING file - Comparing atmf024.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.coupler.res ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.MOM.res.nc ............MISSING file - Comparing RESTART/iced.2021-03-23-21600.nc ............MISSING file - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc ............MISSING file - Comparing 20210323.060000.out_pnt.ww3 ............MISSING file - Comparing 20210323.060000.out_grd.ww3 ............MISSING file - -Test 027 cpld_control_pdlib_p8_intel FAIL + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 819.228529 + 0: The maximum resident set size (KB) = 1814312 + +Test 027 cpld_control_pdlib_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_restart_pdlib_p8_intel +Checking test 028 cpld_restart_pdlib_p8_intel results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 388.517995 + 0: The maximum resident set size (KB) = 1279496 + +Test 028 cpld_restart_pdlib_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_mpi_pdlib_p8_intel +Checking test 029 cpld_mpi_pdlib_p8_intel results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 911.188061 + 0: The maximum resident set size (KB) = 1731252 + +Test 029 cpld_mpi_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_debug_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_debug_pdlib_p8_intel Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1836,14 +1970,14 @@ Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1287.936420 - 0: The maximum resident set size (KB) = 1786016 + 0: The total amount of wall time = 1288.496839 + 0: The maximum resident set size (KB) = 1763196 Test 030 cpld_debug_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_flake_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_flake_intel Checking test 031 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1854,14 +1988,14 @@ Checking test 031 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 164.658387 - 0: The maximum resident set size (KB) = 716736 + 0: The total amount of wall time = 160.558973 + 0: The maximum resident set size (KB) = 719896 -Test 031 control_flake_intel PASS Tries: 2 +Test 031 control_flake_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_CubedSphereGrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_CubedSphereGrid_intel Checking test 032 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1888,18 +2022,18 @@ Checking test 032 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 115.209942 - 0: The maximum resident set size (KB) = 658928 + 0: The total amount of wall time = 115.469097 + 0: The maximum resident set size (KB) = 668352 Test 032 control_CubedSphereGrid_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_CubedSphereGrid_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_CubedSphereGrid_parallel_intel Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK @@ -1910,14 +2044,14 @@ Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 121.703668 - 0: The maximum resident set size (KB) = 674704 + 0: The total amount of wall time = 122.827407 + 0: The maximum resident set size (KB) = 671740 -Test 033 control_CubedSphereGrid_parallel_intel PASS Tries: 2 +Test 033 control_CubedSphereGrid_parallel_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_latlon_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_latlon_intel Checking test 034 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1928,14 +2062,14 @@ Checking test 034 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 117.605991 - 0: The maximum resident set size (KB) = 666480 + 0: The total amount of wall time = 116.871995 + 0: The maximum resident set size (KB) = 672188 -Test 034 control_latlon_intel PASS Tries: 2 +Test 034 control_latlon_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_wrtGauss_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_wrtGauss_netcdf_parallel_intel Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1946,14 +2080,14 @@ Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 119.904135 - 0: The maximum resident set size (KB) = 667832 + 0: The total amount of wall time = 119.276726 + 0: The maximum resident set size (KB) = 675984 Test 035 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_c48_intel Checking test 036 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1992,14 +2126,14 @@ Checking test 036 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 339.835754 -0: The maximum resident set size (KB) = 853932 +0: The total amount of wall time = 340.004592 +0: The maximum resident set size (KB) = 860596 -Test 036 control_c48_intel PASS Tries: 2 +Test 036 control_c48_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_c192_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_c192_intel Checking test 037 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2010,14 +2144,14 @@ Checking test 037 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 461.206964 - 0: The maximum resident set size (KB) = 988552 + 0: The total amount of wall time = 461.989793 + 0: The maximum resident set size (KB) = 953072 Test 037 control_c192_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_c384_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_c384_intel Checking test 038 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2028,14 +2162,14 @@ Checking test 038 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 541.734376 - 0: The maximum resident set size (KB) = 1447776 + 0: The total amount of wall time = 488.440029 + 0: The maximum resident set size (KB) = 1450092 -Test 038 control_c384_intel PASS Tries: 2 +Test 038 control_c384_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_c384gdas_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_c384gdas_intel Checking test 039 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2078,14 +2212,14 @@ Checking test 039 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 431.325190 - 0: The maximum resident set size (KB) = 1526816 + 0: The total amount of wall time = 418.818981 + 0: The maximum resident set size (KB) = 1521588 -Test 039 control_c384gdas_intel PASS Tries: 2 +Test 039 control_c384gdas_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_stochy_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_stochy_intel Checking test 040 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2096,28 +2230,28 @@ Checking test 040 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 78.350487 - 0: The maximum resident set size (KB) = 670048 + 0: The total amount of wall time = 76.867347 + 0: The maximum resident set size (KB) = 671016 Test 040 control_stochy_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_stochy_restart_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_stochy_restart_intel Checking test 041 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 44.074196 - 0: The maximum resident set size (KB) = 548808 + 0: The total amount of wall time = 42.754203 + 0: The maximum resident set size (KB) = 537968 Test 041 control_stochy_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_lndp_intel Checking test 042 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2128,14 +2262,14 @@ Checking test 042 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 74.531921 - 0: The maximum resident set size (KB) = 667064 + 0: The total amount of wall time = 73.127497 + 0: The maximum resident set size (KB) = 672160 -Test 042 control_lndp_intel PASS Tries: 2 +Test 042 control_lndp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_iovr4_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_iovr4_intel Checking test 043 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2150,14 +2284,14 @@ Checking test 043 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 118.342063 - 0: The maximum resident set size (KB) = 675472 + 0: The total amount of wall time = 116.744324 + 0: The maximum resident set size (KB) = 676384 Test 043 control_iovr4_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_iovr5_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_iovr5_intel Checking test 044 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2172,14 +2306,14 @@ Checking test 044 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 119.458364 - 0: The maximum resident set size (KB) = 671368 + 0: The total amount of wall time = 116.860251 + 0: The maximum resident set size (KB) = 672124 Test 044 control_iovr5_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_intel Checking test 045 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2226,14 +2360,14 @@ Checking test 045 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 147.597150 - 0: The maximum resident set size (KB) = 1640124 + 0: The total amount of wall time = 145.061704 + 0: The maximum resident set size (KB) = 1634472 -Test 045 control_p8_intel PASS Tries: 2 +Test 045 control_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_p8_ugwpv1_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_ugwpv1_intel Checking test 046 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2280,14 +2414,14 @@ Checking test 046 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 140.086114 - 0: The maximum resident set size (KB) = 1645976 + 0: The total amount of wall time = 137.661254 + 0: The maximum resident set size (KB) = 1656664 -Test 046 control_p8_ugwpv1_intel PASS Tries: 2 +Test 046 control_p8_ugwpv1_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_restart_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_restart_p8_intel Checking test 047 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2326,14 +2460,14 @@ Checking test 047 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 76.727423 - 0: The maximum resident set size (KB) = 917688 + 0: The total amount of wall time = 77.130171 + 0: The maximum resident set size (KB) = 919672 Test 047 control_restart_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_noqr_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_noqr_p8_intel Checking test 048 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2380,14 +2514,14 @@ Checking test 048 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 141.223084 - 0: The maximum resident set size (KB) = 1631348 + 0: The total amount of wall time = 139.775580 + 0: The maximum resident set size (KB) = 1635156 Test 048 control_noqr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_restart_noqr_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_restart_noqr_p8_intel Checking test 049 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2426,14 +2560,14 @@ Checking test 049 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 74.300565 - 0: The maximum resident set size (KB) = 983800 + 0: The total amount of wall time = 74.475199 + 0: The maximum resident set size (KB) = 984860 Test 049 control_restart_noqr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_decomp_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_decomp_p8_intel Checking test 050 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2476,14 +2610,14 @@ Checking test 050 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 146.930899 - 0: The maximum resident set size (KB) = 1639976 + 0: The total amount of wall time = 146.152750 + 0: The maximum resident set size (KB) = 1635436 Test 050 control_decomp_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_2threads_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_2threads_p8_intel Checking test 051 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2526,14 +2660,14 @@ Checking test 051 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 134.342971 - 0: The maximum resident set size (KB) = 1733264 + 0: The total amount of wall time = 132.556556 + 0: The maximum resident set size (KB) = 1731980 Test 051 control_2threads_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_p8_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_lndp_intel Checking test 052 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2552,14 +2686,14 @@ Checking test 052 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 258.237944 - 0: The maximum resident set size (KB) = 1637068 + 0: The total amount of wall time = 257.060969 + 0: The maximum resident set size (KB) = 1643248 Test 052 control_p8_lndp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_p8_rrtmgp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_rrtmgp_intel Checking test 053 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2606,14 +2740,14 @@ Checking test 053 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.576495 - 0: The maximum resident set size (KB) = 1720568 + 0: The total amount of wall time = 196.168379 + 0: The maximum resident set size (KB) = 1720164 Test 053 control_p8_rrtmgp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_p8_mynn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_mynn_intel Checking test 054 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2660,14 +2794,14 @@ Checking test 054 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 145.308880 - 0: The maximum resident set size (KB) = 1660080 + 0: The total amount of wall time = 144.519394 + 0: The maximum resident set size (KB) = 1647016 Test 054 control_p8_mynn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/merra2_thompson_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/merra2_thompson_intel Checking test 055 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2714,14 +2848,14 @@ Checking test 055 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.290448 - 0: The maximum resident set size (KB) = 1656636 + 0: The total amount of wall time = 169.715624 + 0: The maximum resident set size (KB) = 1653872 Test 055 merra2_thompson_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_control_intel Checking test 056 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2732,28 +2866,28 @@ Checking test 056 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 262.726147 - 0: The maximum resident set size (KB) = 959656 + 0: The total amount of wall time = 259.682423 + 0: The maximum resident set size (KB) = 964060 Test 056 regional_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_restart_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_restart_intel Checking test 057 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 141.499937 - 0: The maximum resident set size (KB) = 1107916 + 0: The total amount of wall time = 139.218997 + 0: The maximum resident set size (KB) = 1110500 Test 057 regional_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_decomp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_decomp_intel Checking test 058 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2764,14 +2898,14 @@ Checking test 058 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 272.393541 - 0: The maximum resident set size (KB) = 953328 + 0: The total amount of wall time = 274.107719 + 0: The maximum resident set size (KB) = 947504 Test 058 regional_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_2threads_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_2threads_intel Checking test 059 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2782,14 +2916,14 @@ Checking test 059 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 165.225023 - 0: The maximum resident set size (KB) = 922692 + 0: The total amount of wall time = 159.762424 + 0: The maximum resident set size (KB) = 914548 Test 059 regional_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_noquilt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_noquilt_intel Checking test 060 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2797,28 +2931,28 @@ Checking test 060 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 251.330694 - 0: The maximum resident set size (KB) = 1493716 + 0: The total amount of wall time = 252.677829 + 0: The maximum resident set size (KB) = 1493136 Test 060 regional_noquilt_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_netcdf_parallel_intel Checking test 061 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 260.104307 - 0: The maximum resident set size (KB) = 963956 + 0: The total amount of wall time = 262.956978 + 0: The maximum resident set size (KB) = 961480 Test 061 regional_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_2dwrtdecomp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_2dwrtdecomp_intel Checking test 062 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2829,14 +2963,14 @@ Checking test 062 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 261.192835 - 0: The maximum resident set size (KB) = 955600 + 0: The total amount of wall time = 263.988556 + 0: The maximum resident set size (KB) = 959960 Test 062 regional_2dwrtdecomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_wofs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_wofs_intel Checking test 063 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2847,14 +2981,14 @@ Checking test 063 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 327.101789 - 0: The maximum resident set size (KB) = 2071620 + 0: The total amount of wall time = 324.714372 + 0: The maximum resident set size (KB) = 2092488 Test 063 regional_wofs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_intel Checking test 064 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2901,14 +3035,14 @@ Checking test 064 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 384.903284 - 0: The maximum resident set size (KB) = 1213264 + 0: The total amount of wall time = 389.625947 + 0: The maximum resident set size (KB) = 1190880 Test 064 rap_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_spp_sppt_shum_skeb_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_spp_sppt_shum_skeb_intel Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2919,14 +3053,14 @@ Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 208.305294 - 0: The maximum resident set size (KB) = 1413476 + 0: The total amount of wall time = 211.718328 + 0: The maximum resident set size (KB) = 1412448 Test 065 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_decomp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_decomp_intel Checking test 066 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2973,14 +3107,14 @@ Checking test 066 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 406.682532 - 0: The maximum resident set size (KB) = 1127808 + 0: The total amount of wall time = 402.497674 + 0: The maximum resident set size (KB) = 1138468 Test 066 rap_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_2threads_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_2threads_intel Checking test 067 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3027,14 +3161,14 @@ Checking test 067 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 363.557570 - 0: The maximum resident set size (KB) = 1371072 + 0: The total amount of wall time = 361.407079 + 0: The maximum resident set size (KB) = 1378812 Test 067 rap_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_restart_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_restart_intel Checking test 068 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3073,14 +3207,14 @@ Checking test 068 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.364241 - 0: The maximum resident set size (KB) = 1134996 + 0: The total amount of wall time = 197.224144 + 0: The maximum resident set size (KB) = 1134656 Test 068 rap_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_sfcdiff_intel Checking test 069 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3127,14 +3261,14 @@ Checking test 069 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 381.516146 - 0: The maximum resident set size (KB) = 1206612 + 0: The total amount of wall time = 383.522159 + 0: The maximum resident set size (KB) = 1202664 Test 069 rap_sfcdiff_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_sfcdiff_decomp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_sfcdiff_decomp_intel Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3181,14 +3315,14 @@ Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 406.194509 - 0: The maximum resident set size (KB) = 1128436 + 0: The total amount of wall time = 405.592510 + 0: The maximum resident set size (KB) = 1164520 Test 070 rap_sfcdiff_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_sfcdiff_restart_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_sfcdiff_restart_intel Checking test 071 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3227,14 +3361,14 @@ Checking test 071 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 287.191052 - 0: The maximum resident set size (KB) = 1189684 + 0: The total amount of wall time = 286.139264 + 0: The maximum resident set size (KB) = 1193180 Test 071 rap_sfcdiff_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_intel Checking test 072 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3281,14 +3415,14 @@ Checking test 072 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.807382 - 0: The maximum resident set size (KB) = 1075168 + 0: The total amount of wall time = 200.555986 + 0: The maximum resident set size (KB) = 1067560 Test 072 hrrr_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_decomp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_decomp_intel Checking test 073 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3335,14 +3469,14 @@ Checking test 073 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.138737 - 0: The maximum resident set size (KB) = 1058192 + 0: The total amount of wall time = 200.294520 + 0: The maximum resident set size (KB) = 1046540 Test 073 hrrr_control_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_2threads_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_2threads_intel Checking test 074 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3389,28 +3523,28 @@ Checking test 074 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.578821 - 0: The maximum resident set size (KB) = 1122964 + 0: The total amount of wall time = 181.885566 + 0: The maximum resident set size (KB) = 1126204 Test 074 hrrr_control_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_restart_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_restart_intel Checking test 075 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 104.443347 - 0: The maximum resident set size (KB) = 1035476 + 0: The total amount of wall time = 102.846971 + 0: The maximum resident set size (KB) = 1033336 Test 075 hrrr_control_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rrfs_v1beta_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rrfs_v1beta_intel Checking test 076 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3457,14 +3591,14 @@ Checking test 076 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 372.427836 - 0: The maximum resident set size (KB) = 1200228 + 0: The total amount of wall time = 371.191837 + 0: The maximum resident set size (KB) = 1188564 Test 076 rrfs_v1beta_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rrfs_v1nssl_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rrfs_v1nssl_intel Checking test 077 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3479,14 +3613,14 @@ Checking test 077 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 450.047371 - 0: The maximum resident set size (KB) = 2009708 + 0: The total amount of wall time = 446.802734 + 0: The maximum resident set size (KB) = 2004024 Test 077 rrfs_v1nssl_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rrfs_v1nssl_nohailnoccn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rrfs_v1nssl_nohailnoccn_intel Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3501,14 +3635,14 @@ Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 440.724624 - 0: The maximum resident set size (KB) = 2182668 + 0: The total amount of wall time = 434.135716 + 0: The maximum resident set size (KB) = 2186512 Test 078 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_csawmg_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3519,14 +3653,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 300.082030 - 0: The maximum resident set size (KB) = 823988 + 0: The total amount of wall time = 297.044587 + 0: The maximum resident set size (KB) = 835240 Test 079 control_csawmg_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_csawmgt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3537,14 +3671,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 294.086778 - 0: The maximum resident set size (KB) = 843556 + 0: The total amount of wall time = 291.377983 + 0: The maximum resident set size (KB) = 823612 Test 080 control_csawmgt_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_ras_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3555,26 +3689,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 162.130203 - 0: The maximum resident set size (KB) = 808704 + 0: The total amount of wall time = 162.654382 + 0: The maximum resident set size (KB) = 815960 Test 081 control_ras_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_wam_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_wam_intel Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 100.606517 - 0: The maximum resident set size (KB) = 797592 + 0: The total amount of wall time = 99.655438 + 0: The maximum resident set size (KB) = 812260 Test 082 control_wam_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3621,14 +3755,14 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 127.972396 - 0: The maximum resident set size (KB) = 1636296 + 0: The total amount of wall time = 127.181433 + 0: The maximum resident set size (KB) = 1647156 Test 083 control_p8_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_control_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3639,14 +3773,14 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 238.558492 - 0: The maximum resident set size (KB) = 952760 + 0: The total amount of wall time = 237.880900 + 0: The maximum resident set size (KB) = 956444 Test 084 regional_control_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_CubedSphereGrid_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3673,364 +3807,364 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 126.888170 - 0: The maximum resident set size (KB) = 830124 + 0: The total amount of wall time = 125.470245 + 0: The maximum resident set size (KB) = 814572 Test 085 control_CubedSphereGrid_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_wrtGauss_netcdf_parallel_debug_intel Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 124.835124 - 0: The maximum resident set size (KB) = 835952 + 0: The total amount of wall time = 125.132941 + 0: The maximum resident set size (KB) = 823136 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_stochy_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_stochy_debug_intel Checking test 087 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.957425 - 0: The maximum resident set size (KB) = 834384 + 0: The total amount of wall time = 141.991790 + 0: The maximum resident set size (KB) = 832684 Test 087 control_stochy_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_lndp_debug_intel Checking test 088 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 127.340528 - 0: The maximum resident set size (KB) = 821296 + 0: The total amount of wall time = 126.966450 + 0: The maximum resident set size (KB) = 828920 Test 088 control_lndp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_csawmg_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_csawmg_debug_intel Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 193.192196 - 0: The maximum resident set size (KB) = 884260 + 0: The total amount of wall time = 194.627451 + 0: The maximum resident set size (KB) = 866868 Test 089 control_csawmg_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_csawmgt_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_csawmgt_debug_intel Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 190.907104 - 0: The maximum resident set size (KB) = 868600 + 0: The total amount of wall time = 190.947157 + 0: The maximum resident set size (KB) = 878232 Test 090 control_csawmgt_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_ras_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_ras_debug_intel Checking test 091 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 128.785064 - 0: The maximum resident set size (KB) = 835496 + 0: The total amount of wall time = 130.513632 + 0: The maximum resident set size (KB) = 828404 Test 091 control_ras_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_diag_debug_intel Checking test 092 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 130.079542 - 0: The maximum resident set size (KB) = 877800 + 0: The total amount of wall time = 129.751338 + 0: The maximum resident set size (KB) = 881996 Test 092 control_diag_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_debug_p8_intel Checking test 093 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 134.337989 - 0: The maximum resident set size (KB) = 1674152 + 0: The total amount of wall time = 132.554376 + 0: The maximum resident set size (KB) = 1658420 Test 093 control_debug_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_debug_intel Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 839.333055 - 0: The maximum resident set size (KB) = 900736 + 0: The total amount of wall time = 836.552612 + 0: The maximum resident set size (KB) = 890324 Test 094 regional_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_debug_intel Checking test 095 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.381773 - 0: The maximum resident set size (KB) = 1216324 + 0: The total amount of wall time = 233.556729 + 0: The maximum resident set size (KB) = 1216664 Test 095 rap_control_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_debug_intel Checking test 096 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.944232 - 0: The maximum resident set size (KB) = 1219120 + 0: The total amount of wall time = 222.667200 + 0: The maximum resident set size (KB) = 1227340 Test 096 hrrr_control_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_gf_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_gf_debug_intel Checking test 097 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.843397 - 0: The maximum resident set size (KB) = 1210664 + 0: The total amount of wall time = 230.969170 + 0: The maximum resident set size (KB) = 1212456 Test 097 hrrr_gf_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_c3_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_c3_debug_intel Checking test 098 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.161106 - 0: The maximum resident set size (KB) = 1210332 + 0: The total amount of wall time = 231.635420 + 0: The maximum resident set size (KB) = 1222004 Test 098 hrrr_c3_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_unified_drag_suite_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_unified_drag_suite_debug_intel Checking test 099 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.745199 - 0: The maximum resident set size (KB) = 1213624 + 0: The total amount of wall time = 230.595457 + 0: The maximum resident set size (KB) = 1215076 Test 099 rap_unified_drag_suite_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_diag_debug_intel Checking test 100 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 243.468888 - 0: The maximum resident set size (KB) = 1298912 + 0: The total amount of wall time = 239.791318 + 0: The maximum resident set size (KB) = 1300716 Test 100 rap_diag_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_cires_ugwp_debug_intel Checking test 101 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 236.993301 - 0: The maximum resident set size (KB) = 1217228 + 0: The total amount of wall time = 235.163433 + 0: The maximum resident set size (KB) = 1219900 Test 101 rap_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_unified_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_unified_ugwp_debug_intel Checking test 102 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 235.920274 - 0: The maximum resident set size (KB) = 1215824 + 0: The total amount of wall time = 236.851145 + 0: The maximum resident set size (KB) = 1209548 Test 102 rap_unified_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_lndp_debug_intel Checking test 103 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.246463 - 0: The maximum resident set size (KB) = 1214152 + 0: The total amount of wall time = 231.125197 + 0: The maximum resident set size (KB) = 1222332 Test 103 rap_lndp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_progcld_thompson_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_progcld_thompson_debug_intel Checking test 104 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.206598 - 0: The maximum resident set size (KB) = 1212532 + 0: The total amount of wall time = 233.216756 + 0: The maximum resident set size (KB) = 1206980 Test 104 rap_progcld_thompson_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_noah_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_noah_debug_intel Checking test 105 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.341978 - 0: The maximum resident set size (KB) = 1224036 + 0: The total amount of wall time = 230.875726 + 0: The maximum resident set size (KB) = 1222916 Test 105 rap_noah_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_sfcdiff_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_sfcdiff_debug_intel Checking test 106 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.989994 - 0: The maximum resident set size (KB) = 1216636 + 0: The total amount of wall time = 230.810219 + 0: The maximum resident set size (KB) = 1222216 Test 106 rap_sfcdiff_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 379.022396 - 0: The maximum resident set size (KB) = 1213916 + 0: The total amount of wall time = 382.980955 + 0: The maximum resident set size (KB) = 1214644 Test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rrfs_v1beta_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rrfs_v1beta_debug_intel Checking test 108 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.127133 - 0: The maximum resident set size (KB) = 1220928 + 0: The total amount of wall time = 230.960365 + 0: The maximum resident set size (KB) = 1207040 Test 108 rrfs_v1beta_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_clm_lake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_clm_lake_debug_intel Checking test 109 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.438861 - 0: The maximum resident set size (KB) = 1214000 + 0: The total amount of wall time = 279.957022 + 0: The maximum resident set size (KB) = 1216724 Test 109 rap_clm_lake_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_flake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_flake_debug_intel Checking test 110 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 236.288404 - 0: The maximum resident set size (KB) = 1212436 + 0: The total amount of wall time = 231.389432 + 0: The maximum resident set size (KB) = 1218844 Test 110 rap_flake_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/gnv1_c96_no_nest_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/gnv1_c96_no_nest_debug_intel Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4071,14 +4205,14 @@ Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 403.085612 - 0: The maximum resident set size (KB) = 1223832 + 0: The total amount of wall time = 399.982991 + 0: The maximum resident set size (KB) = 1217272 Test 111 gnv1_c96_no_nest_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4089,14 +4223,14 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 197.607985 - 0: The maximum resident set size (KB) = 1276428 + 0: The total amount of wall time = 201.215618 + 0: The maximum resident set size (KB) = 1278060 Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_dyn32_phy32_intel Checking test 113 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4143,14 +4277,14 @@ Checking test 113 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 313.760880 - 0: The maximum resident set size (KB) = 1131740 + 0: The total amount of wall time = 318.079420 + 0: The maximum resident set size (KB) = 1138676 Test 113 rap_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_dyn32_phy32_intel Checking test 114 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4197,14 +4331,14 @@ Checking test 114 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 164.718473 - 0: The maximum resident set size (KB) = 1029100 + 0: The total amount of wall time = 168.499509 + 0: The maximum resident set size (KB) = 1029072 Test 114 hrrr_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_2threads_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_2threads_dyn32_phy32_intel Checking test 115 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4251,14 +4385,14 @@ Checking test 115 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 294.707507 - 0: The maximum resident set size (KB) = 1283492 + 0: The total amount of wall time = 295.368465 + 0: The maximum resident set size (KB) = 1293040 Test 115 rap_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_2threads_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_2threads_dyn32_phy32_intel Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4305,14 +4439,14 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 155.297684 - 0: The maximum resident set size (KB) = 1038164 + 0: The total amount of wall time = 157.814221 + 0: The maximum resident set size (KB) = 1040040 Test 116 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_decomp_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_decomp_dyn32_phy32_intel Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4359,14 +4493,14 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.198837 - 0: The maximum resident set size (KB) = 991592 + 0: The total amount of wall time = 173.198472 + 0: The maximum resident set size (KB) = 993740 Test 117 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_restart_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_restart_dyn32_phy32_intel Checking test 118 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4405,28 +4539,28 @@ Checking test 118 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.434206 - 0: The maximum resident set size (KB) = 1107128 + 0: The total amount of wall time = 240.867267 + 0: The maximum resident set size (KB) = 1099876 Test 118 rap_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_restart_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_restart_dyn32_phy32_intel Checking test 119 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 85.848379 - 0: The maximum resident set size (KB) = 977196 + 0: The total amount of wall time = 85.178843 + 0: The maximum resident set size (KB) = 964632 Test 119 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_control_intel Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4442,40 +4576,40 @@ Checking test 120 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 102.169098 - 0: The maximum resident set size (KB) = 1293252 + 0: The total amount of wall time = 101.594377 + 0: The maximum resident set size (KB) = 1306864 Test 120 conus13km_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_2threads_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_2threads_intel Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 43.568493 - 0: The maximum resident set size (KB) = 1209568 + 0: The total amount of wall time = 45.171303 + 0: The maximum resident set size (KB) = 1199820 Test 121 conus13km_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_restart_mismatch_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_restart_mismatch_intel Checking test 122 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 57.840616 - 0: The maximum resident set size (KB) = 1148928 + 0: The total amount of wall time = 55.999888 + 0: The maximum resident set size (KB) = 1158632 Test 122 conus13km_restart_mismatch_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_dyn64_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4522,42 +4656,42 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 212.309497 - 0: The maximum resident set size (KB) = 1066912 + 0: The total amount of wall time = 213.873372 + 0: The maximum resident set size (KB) = 1091324 Test 123 rap_control_dyn64_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.445342 - 0: The maximum resident set size (KB) = 1094156 + 0: The total amount of wall time = 229.713228 + 0: The maximum resident set size (KB) = 1095388 Test 124 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 222.621117 - 0: The maximum resident set size (KB) = 1094760 + 0: The total amount of wall time = 221.321839 + 0: The maximum resident set size (KB) = 1095304 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_debug_intel Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4571,14 +4705,14 @@ Checking test 126 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 700.223625 - 0: The maximum resident set size (KB) = 1351836 + 0: The total amount of wall time = 714.814052 + 0: The maximum resident set size (KB) = 1349380 Test 126 conus13km_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_debug_qr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_debug_qr_intel Checking test 127 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4592,81 +4726,81 @@ Checking test 127 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 710.224736 - 0: The maximum resident set size (KB) = 985456 + 0: The total amount of wall time = 703.419408 + 0: The maximum resident set size (KB) = 997992 Test 127 conus13km_debug_qr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_debug_2threads_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_debug_2threads_intel Checking test 128 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 398.438495 - 0: The maximum resident set size (KB) = 1238812 + 0: The total amount of wall time = 398.636484 + 0: The maximum resident set size (KB) = 1233004 Test 128 conus13km_debug_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_radar_tten_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_radar_tten_debug_intel Checking test 129 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 697.101146 - 0: The maximum resident set size (KB) = 1413152 + 0: The total amount of wall time = 700.811067 + 0: The maximum resident set size (KB) = 1412176 Test 129 conus13km_radar_tten_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_dyn64_phy32_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_dyn64_phy32_debug_intel Checking test 130 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.387083 - 0: The maximum resident set size (KB) = 1158072 + 0: The total amount of wall time = 229.167810 + 0: The maximum resident set size (KB) = 1155192 Test 130 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_atm_intel Checking test 131 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 318.219404 - 0: The maximum resident set size (KB) = 880756 + 0: The total amount of wall time = 324.730576 + 0: The maximum resident set size (KB) = 883568 Test 131 hafs_regional_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_atm_thompson_gfdlsf_intel Checking test 132 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 294.264579 - 0: The maximum resident set size (KB) = 1275120 + 0: The total amount of wall time = 303.203408 + 0: The maximum resident set size (KB) = 1280376 Test 132 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_atm_ocn_intel Checking test 133 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4675,14 +4809,14 @@ Checking test 133 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 386.882521 - 0: The maximum resident set size (KB) = 937016 + 0: The total amount of wall time = 386.410592 + 0: The maximum resident set size (KB) = 944528 Test 133 hafs_regional_atm_ocn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_atm_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_atm_wav_intel Checking test 134 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4691,14 +4825,14 @@ Checking test 134 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 834.985586 - 0: The maximum resident set size (KB) = 986208 + 0: The total amount of wall time = 832.722555 + 0: The maximum resident set size (KB) = 977228 Test 134 hafs_regional_atm_wav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_atm_ocn_wav_intel Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4709,14 +4843,14 @@ Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 895.923168 - 0: The maximum resident set size (KB) = 1013300 + 0: The total amount of wall time = 905.794290 + 0: The maximum resident set size (KB) = 1003888 Test 135 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_1nest_atm_intel Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4727,25 +4861,25 @@ Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 316.310829 - 0: The maximum resident set size (KB) = 606100 + 0: The total amount of wall time = 316.953507 + 0: The maximum resident set size (KB) = 604264 Test 136 hafs_regional_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_telescopic_2nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_telescopic_2nests_atm_intel Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4754,14 +4888,14 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 408.365739 - 0: The maximum resident set size (KB) = 618356 + 0: The total amount of wall time = 407.877105 + 0: The maximum resident set size (KB) = 619996 Test 137 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_global_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_global_1nest_atm_intel Checking test 138 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4781,14 +4915,14 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK @@ -4797,25 +4931,25 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 166.042718 - 0: The maximum resident set size (KB) = 438292 + 0: The total amount of wall time = 156.085969 + 0: The maximum resident set size (KB) = 433736 Test 138 hafs_global_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_global_multiple_4nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_global_multiple_4nests_atm_intel Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4835,14 +4969,14 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.coupler.res .........OK Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK @@ -4850,39 +4984,39 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK @@ -4897,14 +5031,14 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 453.332607 - 0: The maximum resident set size (KB) = 537604 + 0: The total amount of wall time = 462.226901 + 0: The maximum resident set size (KB) = 547132 Test 139 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_specified_moving_1nest_atm_intel Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4913,14 +5047,14 @@ Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 226.879802 - 0: The maximum resident set size (KB) = 620332 + 0: The total amount of wall time = 223.727900 + 0: The maximum resident set size (KB) = 616300 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_storm_following_1nest_atm_intel Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4937,19 +5071,19 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 216.933118 - 0: The maximum resident set size (KB) = 619076 + 0: The total amount of wall time = 212.472712 + 0: The maximum resident set size (KB) = 620256 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4958,96 +5092,96 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 283.978888 - 0: The maximum resident set size (KB) = 679916 + 0: The total amount of wall time = 288.116317 + 0: The maximum resident set size (KB) = 676824 Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_global_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_global_storm_following_1nest_atm_intel Checking test 143 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 74.304153 - 0: The maximum resident set size (KB) = 452716 + 0: The total amount of wall time = 76.737288 + 0: The maximum resident set size (KB) = 451580 Test 143 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/gnv1_nested_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/gnv1_nested_intel Checking test 144 gnv1_nested_intel results .... - Comparing atmf006.nc ............ALT CHECK......NOT OK - Comparing sfcf006.nc ............ALT CHECK......NOT OK - Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......NOT OK + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK - - 0: The total amount of wall time = 239.021405 - 0: The maximum resident set size (KB) = 899060 - -Test 144 gnv1_nested_intel FAIL Tries: 2 + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 243.951915 + 0: The maximum resident set size (KB) = 897024 + +Test 144 gnv1_nested_intel PASS Tries: 2 baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 666.547921 - 0: The maximum resident set size (KB) = 637352 + 0: The total amount of wall time = 667.022543 + 0: The maximum resident set size (KB) = 634396 Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5058,162 +5192,162 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 966.169377 - 0: The maximum resident set size (KB) = 740944 + 0: The total amount of wall time = 957.706181 + 0: The maximum resident set size (KB) = 848040 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_docn_intel -Checking test 147 hafs_regional_docn_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_docn_intel +Checking test 149 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 326.177224 - 0: The maximum resident set size (KB) = 932164 + 0: The total amount of wall time = 323.775451 + 0: The maximum resident set size (KB) = 952092 -Test 147 hafs_regional_docn_intel PASS +Test 149 hafs_regional_docn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_docn_oisst_intel -Checking test 148 hafs_regional_docn_oisst_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_docn_oisst_intel +Checking test 150 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 332.027398 - 0: The maximum resident set size (KB) = 936888 + 0: The total amount of wall time = 324.844830 + 0: The maximum resident set size (KB) = 938744 -Test 148 hafs_regional_docn_oisst_intel PASS +Test 150 hafs_regional_docn_oisst_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_datm_cdeps_intel -Checking test 149 hafs_regional_datm_cdeps_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_datm_cdeps_intel +Checking test 151 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 985.430466 - 0: The maximum resident set size (KB) = 1341000 + 0: The total amount of wall time = 973.517080 + 0: The maximum resident set size (KB) = 1344836 -Test 149 hafs_regional_datm_cdeps_intel PASS +Test 151 hafs_regional_datm_cdeps_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_control_cfsr_intel -Checking test 150 datm_cdeps_control_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_control_cfsr_intel +Checking test 152 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 121.405192 - 0: The maximum resident set size (KB) = 1146844 + 0: The total amount of wall time = 122.332679 + 0: The maximum resident set size (KB) = 1155588 -Test 150 datm_cdeps_control_cfsr_intel PASS +Test 152 datm_cdeps_control_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_restart_cfsr_intel -Checking test 151 datm_cdeps_restart_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_restart_cfsr_intel +Checking test 153 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 74.563422 - 0: The maximum resident set size (KB) = 1084108 + 0: The total amount of wall time = 73.180763 + 0: The maximum resident set size (KB) = 1097492 -Test 151 datm_cdeps_restart_cfsr_intel PASS +Test 153 datm_cdeps_restart_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_control_gefs_intel -Checking test 152 datm_cdeps_control_gefs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_control_gefs_intel +Checking test 154 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 116.800618 - 0: The maximum resident set size (KB) = 1003336 + 0: The total amount of wall time = 118.242790 + 0: The maximum resident set size (KB) = 1010916 -Test 152 datm_cdeps_control_gefs_intel PASS +Test 154 datm_cdeps_control_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_iau_gefs_intel -Checking test 153 datm_cdeps_iau_gefs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_iau_gefs_intel +Checking test 155 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 118.520018 - 0: The maximum resident set size (KB) = 1005620 + 0: The total amount of wall time = 119.071605 + 0: The maximum resident set size (KB) = 1011076 -Test 153 datm_cdeps_iau_gefs_intel PASS +Test 155 datm_cdeps_iau_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_stochy_gefs_intel -Checking test 154 datm_cdeps_stochy_gefs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_stochy_gefs_intel +Checking test 156 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 119.550527 - 0: The maximum resident set size (KB) = 1015604 + 0: The total amount of wall time = 120.169395 + 0: The maximum resident set size (KB) = 1011552 -Test 154 datm_cdeps_stochy_gefs_intel PASS +Test 156 datm_cdeps_stochy_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_ciceC_cfsr_intel -Checking test 155 datm_cdeps_ciceC_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_ciceC_cfsr_intel +Checking test 157 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 121.609648 - 0: The maximum resident set size (KB) = 1141840 + 0: The total amount of wall time = 123.276614 + 0: The maximum resident set size (KB) = 1150656 -Test 155 datm_cdeps_ciceC_cfsr_intel PASS +Test 157 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_bulk_cfsr_intel -Checking test 156 datm_cdeps_bulk_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_bulk_cfsr_intel +Checking test 158 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.662698 - 0: The maximum resident set size (KB) = 1136156 + 0: The total amount of wall time = 121.858840 + 0: The maximum resident set size (KB) = 1151816 -Test 156 datm_cdeps_bulk_cfsr_intel PASS +Test 158 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_bulk_gefs_intel -Checking test 157 datm_cdeps_bulk_gefs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_bulk_gefs_intel +Checking test 159 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 115.934917 - 0: The maximum resident set size (KB) = 1005968 + 0: The total amount of wall time = 117.074949 + 0: The maximum resident set size (KB) = 1009032 -Test 157 datm_cdeps_bulk_gefs_intel PASS +Test 159 datm_cdeps_bulk_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_mx025_cfsr_intel -Checking test 158 datm_cdeps_mx025_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_mx025_cfsr_intel +Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5221,15 +5355,15 @@ Checking test 158 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 283.119849 - 0: The maximum resident set size (KB) = 1149372 + 0: The total amount of wall time = 286.740938 + 0: The maximum resident set size (KB) = 1162568 -Test 158 datm_cdeps_mx025_cfsr_intel PASS +Test 160 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_mx025_gefs_intel -Checking test 159 datm_cdeps_mx025_gefs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_mx025_gefs_intel +Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5237,78 +5371,78 @@ Checking test 159 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 276.128497 - 0: The maximum resident set size (KB) = 1144856 + 0: The total amount of wall time = 284.765434 + 0: The maximum resident set size (KB) = 1158664 -Test 159 datm_cdeps_mx025_gefs_intel PASS +Test 161 datm_cdeps_mx025_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_multiple_files_cfsr_intel -Checking test 160 datm_cdeps_multiple_files_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_multiple_files_cfsr_intel +Checking test 162 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 120.498847 - 0: The maximum resident set size (KB) = 1146488 + 0: The total amount of wall time = 121.540808 + 0: The maximum resident set size (KB) = 1141104 -Test 160 datm_cdeps_multiple_files_cfsr_intel PASS +Test 162 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_3072x1536_cfsr_intel -Checking test 161 datm_cdeps_3072x1536_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_3072x1536_cfsr_intel +Checking test 163 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 173.841622 - 0: The maximum resident set size (KB) = 2406480 + 0: The total amount of wall time = 176.127626 + 0: The maximum resident set size (KB) = 2391924 -Test 161 datm_cdeps_3072x1536_cfsr_intel PASS +Test 163 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_gfs_intel -Checking test 162 datm_cdeps_gfs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_gfs_intel +Checking test 164 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 174.889112 - 0: The maximum resident set size (KB) = 2417812 + 0: The total amount of wall time = 174.362564 + 0: The maximum resident set size (KB) = 2335200 -Test 162 datm_cdeps_gfs_intel PASS +Test 164 datm_cdeps_gfs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_debug_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_debug_cfsr_intel -Checking test 163 datm_cdeps_debug_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_debug_cfsr_intel +Checking test 165 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 294.582664 - 0: The maximum resident set size (KB) = 1062116 + 0: The total amount of wall time = 302.638209 + 0: The maximum resident set size (KB) = 1058224 -Test 163 datm_cdeps_debug_cfsr_intel PASS +Test 165 datm_cdeps_debug_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_control_cfsr_faster_intel -Checking test 164 datm_cdeps_control_cfsr_faster_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_control_cfsr_faster_intel +Checking test 166 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 124.149305 - 0: The maximum resident set size (KB) = 1147500 + 0: The total amount of wall time = 122.349426 + 0: The maximum resident set size (KB) = 1144892 -Test 164 datm_cdeps_control_cfsr_faster_intel PASS +Test 166 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_lnd_gswp3_intel -Checking test 165 datm_cdeps_lnd_gswp3_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_lnd_gswp3_intel +Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5316,15 +5450,15 @@ Checking test 165 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 46.415124 - 0: The maximum resident set size (KB) = 336564 + 0: The total amount of wall time = 43.939883 + 0: The maximum resident set size (KB) = 326336 -Test 165 datm_cdeps_lnd_gswp3_intel PASS +Test 167 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_lnd_era5_intel -Checking test 166 datm_cdeps_lnd_era5_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_lnd_era5_intel +Checking test 168 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5332,15 +5466,15 @@ Checking test 166 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 50.697348 - 0: The maximum resident set size (KB) = 562340 + 0: The total amount of wall time = 43.386160 + 0: The maximum resident set size (KB) = 561996 -Test 166 datm_cdeps_lnd_era5_intel PASS +Test 168 datm_cdeps_lnd_era5_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_lnd_era5_rst_intel -Checking test 167 datm_cdeps_lnd_era5_rst_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_lnd_era5_rst_intel +Checking test 169 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5348,15 +5482,15 @@ Checking test 167 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 29.969523 - 0: The maximum resident set size (KB) = 559460 + 0: The total amount of wall time = 27.161733 + 0: The maximum resident set size (KB) = 555864 -Test 167 datm_cdeps_lnd_era5_rst_intel PASS +Test 169 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_p8_atmlnd_sbs_intel -Checking test 168 control_p8_atmlnd_sbs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_atmlnd_sbs_intel +Checking test 170 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5444,15 +5578,15 @@ Checking test 168 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 367.894193 - 0: The maximum resident set size (KB) = 1632544 + 0: The total amount of wall time = 336.232068 + 0: The maximum resident set size (KB) = 1649104 -Test 168 control_p8_atmlnd_sbs_intel PASS +Test 170 control_p8_atmlnd_sbs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_p8_atmlnd_intel -Checking test 169 control_p8_atmlnd_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_atmlnd_intel +Checking test 171 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5540,15 +5674,15 @@ Checking test 169 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 361.224426 - 0: The maximum resident set size (KB) = 1659532 + 0: The total amount of wall time = 332.296084 + 0: The maximum resident set size (KB) = 1633772 -Test 169 control_p8_atmlnd_intel PASS +Test 171 control_p8_atmlnd_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_restart_p8_atmlnd_intel -Checking test 170 control_restart_p8_atmlnd_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_restart_p8_atmlnd_intel +Checking test 172 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5568,15 +5702,15 @@ Checking test 170 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 184.975986 - 0: The maximum resident set size (KB) = 951944 + 0: The total amount of wall time = 188.612905 + 0: The maximum resident set size (KB) = 934068 -Test 170 control_restart_p8_atmlnd_intel PASS +Test 172 control_restart_p8_atmlnd_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/atmwav_control_noaero_p8_intel -Checking test 171 atmwav_control_noaero_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/atmwav_control_noaero_p8_intel +Checking test 173 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5618,15 +5752,15 @@ Checking test 171 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 83.183729 - 0: The maximum resident set size (KB) = 1695132 + 0: The total amount of wall time = 81.314147 + 0: The maximum resident set size (KB) = 1695240 -Test 171 atmwav_control_noaero_p8_intel PASS +Test 173 atmwav_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_atmwav_intel -Checking test 172 control_atmwav_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_atmwav_intel +Checking test 174 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5669,15 +5803,15 @@ Checking test 172 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 79.938286 - 0: The maximum resident set size (KB) = 695312 + 0: The total amount of wall time = 78.001288 + 0: The maximum resident set size (KB) = 698464 -Test 172 control_atmwav_intel PASS +Test 174 control_atmwav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/atmaero_control_p8_intel -Checking test 173 atmaero_control_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/atmaero_control_p8_intel +Checking test 175 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5720,15 +5854,15 @@ Checking test 173 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.814338 - 0: The maximum resident set size (KB) = 1801204 + 0: The total amount of wall time = 203.581790 + 0: The maximum resident set size (KB) = 1801968 -Test 173 atmaero_control_p8_intel PASS +Test 175 atmaero_control_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/atmaero_control_p8_rad_intel -Checking test 174 atmaero_control_p8_rad_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/atmaero_control_p8_rad_intel +Checking test 176 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5771,15 +5905,15 @@ Checking test 174 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 245.843407 - 0: The maximum resident set size (KB) = 1812472 + 0: The total amount of wall time = 246.192215 + 0: The maximum resident set size (KB) = 1800168 -Test 174 atmaero_control_p8_rad_intel PASS +Test 176 atmaero_control_p8_rad_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/atmaero_control_p8_rad_micro_intel -Checking test 175 atmaero_control_p8_rad_micro_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/atmaero_control_p8_rad_micro_intel +Checking test 177 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5822,15 +5956,15 @@ Checking test 175 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 262.772364 - 0: The maximum resident set size (KB) = 1825644 + 0: The total amount of wall time = 260.142406 + 0: The maximum resident set size (KB) = 1834644 -Test 175 atmaero_control_p8_rad_micro_intel PASS +Test 177 atmaero_control_p8_rad_micro_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_atmaq_debug_intel -Checking test 176 regional_atmaq_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_atmaq_debug_intel +Checking test 178 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5843,15 +5977,15 @@ Checking test 176 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 989.584118 - 0: The maximum resident set size (KB) = 4601816 + 0: The total amount of wall time = 979.546202 + 0: The maximum resident set size (KB) = 4600716 -Test 176 regional_atmaq_debug_intel PASS +Test 178 regional_atmaq_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_c48_gnu -Checking test 177 control_c48_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_c48_gnu +Checking test 179 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5889,15 +6023,15 @@ Checking test 177 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 563.363008 -0: The maximum resident set size (KB) = 856940 +0: The total amount of wall time = 561.380842 +0: The maximum resident set size (KB) = 861196 -Test 177 control_c48_gnu PASS +Test 179 control_c48_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_stochy_gnu -Checking test 178 control_stochy_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_stochy_gnu +Checking test 180 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5907,15 +6041,15 @@ Checking test 178 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 127.169942 - 0: The maximum resident set size (KB) = 727048 + 0: The total amount of wall time = 132.735321 + 0: The maximum resident set size (KB) = 728368 -Test 178 control_stochy_gnu PASS +Test 180 control_stochy_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_ras_gnu -Checking test 179 control_ras_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_ras_gnu +Checking test 181 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5925,15 +6059,15 @@ Checking test 179 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 213.899428 - 0: The maximum resident set size (KB) = 729820 + 0: The total amount of wall time = 212.387051 + 0: The maximum resident set size (KB) = 732468 -Test 179 control_ras_gnu PASS +Test 181 control_ras_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_p8_gnu -Checking test 180 control_p8_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_gnu +Checking test 182 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5979,15 +6113,15 @@ Checking test 180 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 207.214420 - 0: The maximum resident set size (KB) = 1510056 + 0: The total amount of wall time = 206.614920 + 0: The maximum resident set size (KB) = 1508852 -Test 180 control_p8_gnu PASS +Test 182 control_p8_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_p8_ugwpv1_gnu -Checking test 181 control_p8_ugwpv1_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_ugwpv1_gnu +Checking test 183 control_p8_ugwpv1_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6033,15 +6167,15 @@ Checking test 181 control_p8_ugwpv1_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.623402 - 0: The maximum resident set size (KB) = 1513160 + 0: The total amount of wall time = 200.602410 + 0: The maximum resident set size (KB) = 1511976 -Test 181 control_p8_ugwpv1_gnu PASS +Test 183 control_p8_ugwpv1_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_flake_gnu -Checking test 182 control_flake_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_flake_gnu +Checking test 184 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6051,15 +6185,15 @@ Checking test 182 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 255.239272 - 0: The maximum resident set size (KB) = 807620 + 0: The total amount of wall time = 253.272202 + 0: The maximum resident set size (KB) = 807136 -Test 182 control_flake_gnu PASS +Test 184 control_flake_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_gnu -Checking test 183 rap_control_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_gnu +Checking test 185 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6105,15 +6239,15 @@ Checking test 183 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 447.589669 - 0: The maximum resident set size (KB) = 1085004 + 0: The total amount of wall time = 452.279155 + 0: The maximum resident set size (KB) = 1093624 -Test 183 rap_control_gnu PASS +Test 185 rap_control_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_decomp_gnu -Checking test 184 rap_decomp_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_decomp_gnu +Checking test 186 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6159,15 +6293,15 @@ Checking test 184 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 467.814268 - 0: The maximum resident set size (KB) = 1084780 + 0: The total amount of wall time = 453.943202 + 0: The maximum resident set size (KB) = 1092632 -Test 184 rap_decomp_gnu PASS +Test 186 rap_decomp_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_2threads_gnu -Checking test 185 rap_2threads_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_2threads_gnu +Checking test 187 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6213,15 +6347,15 @@ Checking test 185 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 417.404534 - 0: The maximum resident set size (KB) = 1123048 + 0: The total amount of wall time = 414.089050 + 0: The maximum resident set size (KB) = 1149612 -Test 185 rap_2threads_gnu PASS +Test 187 rap_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_restart_gnu -Checking test 186 rap_restart_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_restart_gnu +Checking test 188 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -6259,15 +6393,15 @@ Checking test 186 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.359238 - 0: The maximum resident set size (KB) = 889836 + 0: The total amount of wall time = 228.342975 + 0: The maximum resident set size (KB) = 884352 -Test 186 rap_restart_gnu PASS +Test 188 rap_restart_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_sfcdiff_gnu -Checking test 187 rap_sfcdiff_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_sfcdiff_gnu +Checking test 189 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6313,15 +6447,15 @@ Checking test 187 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 452.149754 - 0: The maximum resident set size (KB) = 1086356 + 0: The total amount of wall time = 446.395486 + 0: The maximum resident set size (KB) = 1088176 -Test 187 rap_sfcdiff_gnu PASS +Test 189 rap_sfcdiff_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_sfcdiff_decomp_gnu -Checking test 188 rap_sfcdiff_decomp_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_sfcdiff_decomp_gnu +Checking test 190 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6367,15 +6501,15 @@ Checking test 188 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.735775 - 0: The maximum resident set size (KB) = 1087128 + 0: The total amount of wall time = 459.881318 + 0: The maximum resident set size (KB) = 1084248 -Test 188 rap_sfcdiff_decomp_gnu PASS +Test 190 rap_sfcdiff_decomp_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_sfcdiff_restart_gnu -Checking test 189 rap_sfcdiff_restart_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_sfcdiff_restart_gnu +Checking test 191 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -6413,15 +6547,15 @@ Checking test 189 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 335.816234 - 0: The maximum resident set size (KB) = 883520 + 0: The total amount of wall time = 332.956379 + 0: The maximum resident set size (KB) = 886932 -Test 189 rap_sfcdiff_restart_gnu PASS +Test 191 rap_sfcdiff_restart_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_gnu -Checking test 190 hrrr_control_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_gnu +Checking test 192 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6467,15 +6601,15 @@ Checking test 190 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.761842 - 0: The maximum resident set size (KB) = 1070200 + 0: The total amount of wall time = 230.728674 + 0: The maximum resident set size (KB) = 1073092 -Test 190 hrrr_control_gnu PASS +Test 192 hrrr_control_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_noqr_gnu -Checking test 191 hrrr_control_noqr_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_noqr_gnu +Checking test 193 hrrr_control_noqr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6521,15 +6655,15 @@ Checking test 191 hrrr_control_noqr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 235.102477 - 0: The maximum resident set size (KB) = 1135128 + 0: The total amount of wall time = 232.865718 + 0: The maximum resident set size (KB) = 1134184 -Test 191 hrrr_control_noqr_gnu PASS +Test 193 hrrr_control_noqr_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_2threads_gnu -Checking test 192 hrrr_control_2threads_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_2threads_gnu +Checking test 194 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6575,15 +6709,15 @@ Checking test 192 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 212.740428 - 0: The maximum resident set size (KB) = 1021000 + 0: The total amount of wall time = 208.331508 + 0: The maximum resident set size (KB) = 1043920 -Test 192 hrrr_control_2threads_gnu PASS +Test 194 hrrr_control_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_decomp_gnu -Checking test 193 hrrr_control_decomp_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_decomp_gnu +Checking test 195 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6629,43 +6763,43 @@ Checking test 193 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 234.833548 - 0: The maximum resident set size (KB) = 1072664 + 0: The total amount of wall time = 231.001047 + 0: The maximum resident set size (KB) = 1071688 -Test 193 hrrr_control_decomp_gnu PASS +Test 195 hrrr_control_decomp_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_restart_gnu -Checking test 194 hrrr_control_restart_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_restart_gnu +Checking test 196 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 117.324844 - 0: The maximum resident set size (KB) = 883224 + 0: The total amount of wall time = 119.995498 + 0: The maximum resident set size (KB) = 880972 -Test 194 hrrr_control_restart_gnu PASS +Test 196 hrrr_control_restart_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_restart_noqr_gnu -Checking test 195 hrrr_control_restart_noqr_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_restart_noqr_gnu +Checking test 197 hrrr_control_restart_noqr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 116.833400 - 0: The maximum resident set size (KB) = 932104 + 0: The total amount of wall time = 118.349497 + 0: The maximum resident set size (KB) = 933460 -Test 195 hrrr_control_restart_noqr_gnu PASS +Test 197 hrrr_control_restart_noqr_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rrfs_v1beta_gnu -Checking test 196 rrfs_v1beta_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rrfs_v1beta_gnu +Checking test 198 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6711,225 +6845,225 @@ Checking test 196 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 443.078496 - 0: The maximum resident set size (KB) = 1078552 + 0: The total amount of wall time = 450.827800 + 0: The maximum resident set size (KB) = 1079668 -Test 196 rrfs_v1beta_gnu PASS +Test 198 rrfs_v1beta_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_diag_debug_gnu -Checking test 197 control_diag_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_diag_debug_gnu +Checking test 199 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 69.728979 - 0: The maximum resident set size (KB) = 774764 + 0: The total amount of wall time = 66.889713 + 0: The maximum resident set size (KB) = 775480 -Test 197 control_diag_debug_gnu PASS +Test 199 control_diag_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_debug_gnu -Checking test 198 regional_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_debug_gnu +Checking test 200 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 373.963624 - 0: The maximum resident set size (KB) = 924724 + 0: The total amount of wall time = 381.579032 + 0: The maximum resident set size (KB) = 923492 -Test 198 regional_debug_gnu PASS +Test 200 regional_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_debug_gnu -Checking test 199 rap_control_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_debug_gnu +Checking test 201 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 114.131489 - 0: The maximum resident set size (KB) = 1094064 + 0: The total amount of wall time = 113.184094 + 0: The maximum resident set size (KB) = 1099820 -Test 199 rap_control_debug_gnu PASS +Test 201 rap_control_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_debug_gnu -Checking test 200 hrrr_control_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_debug_gnu +Checking test 202 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 112.117421 - 0: The maximum resident set size (KB) = 1085720 + 0: The total amount of wall time = 109.257697 + 0: The maximum resident set size (KB) = 1090168 -Test 200 hrrr_control_debug_gnu PASS +Test 202 hrrr_control_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_gf_debug_gnu -Checking test 201 hrrr_gf_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_gf_debug_gnu +Checking test 203 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 115.130499 - 0: The maximum resident set size (KB) = 1092380 + 0: The total amount of wall time = 112.621029 + 0: The maximum resident set size (KB) = 1096328 -Test 201 hrrr_gf_debug_gnu PASS +Test 203 hrrr_gf_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_c3_debug_gnu -Checking test 202 hrrr_c3_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_c3_debug_gnu +Checking test 204 hrrr_c3_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 115.411421 - 0: The maximum resident set size (KB) = 1095272 + 0: The total amount of wall time = 111.802900 + 0: The maximum resident set size (KB) = 1093676 -Test 202 hrrr_c3_debug_gnu PASS +Test 204 hrrr_c3_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_diag_debug_gnu -Checking test 203 rap_diag_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_diag_debug_gnu +Checking test 205 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 121.725097 - 0: The maximum resident set size (KB) = 1268624 + 0: The total amount of wall time = 116.729712 + 0: The maximum resident set size (KB) = 1269368 -Test 203 rap_diag_debug_gnu PASS +Test 205 rap_diag_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 204 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_noah_sfcdiff_cires_ugwp_debug_gnu +Checking test 206 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 183.175762 - 0: The maximum resident set size (KB) = 1093948 + 0: The total amount of wall time = 179.221669 + 0: The maximum resident set size (KB) = 1095832 -Test 204 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS +Test 206 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_progcld_thompson_debug_gnu -Checking test 205 rap_progcld_thompson_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_progcld_thompson_debug_gnu +Checking test 207 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 113.847477 - 0: The maximum resident set size (KB) = 1099812 + 0: The total amount of wall time = 112.601310 + 0: The maximum resident set size (KB) = 1098488 -Test 205 rap_progcld_thompson_debug_gnu PASS +Test 207 rap_progcld_thompson_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rrfs_v1beta_debug_gnu -Checking test 206 rrfs_v1beta_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rrfs_v1beta_debug_gnu +Checking test 208 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 113.472798 - 0: The maximum resident set size (KB) = 1092056 + 0: The total amount of wall time = 111.345157 + 0: The maximum resident set size (KB) = 1095576 -Test 206 rrfs_v1beta_debug_gnu PASS +Test 208 rrfs_v1beta_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_ras_debug_gnu -Checking test 207 control_ras_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_ras_debug_gnu +Checking test 209 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 68.697168 - 0: The maximum resident set size (KB) = 724584 + 0: The total amount of wall time = 63.405928 + 0: The maximum resident set size (KB) = 730436 -Test 207 control_ras_debug_gnu PASS +Test 209 control_ras_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_stochy_debug_gnu -Checking test 208 control_stochy_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_stochy_debug_gnu +Checking test 210 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 72.184677 - 0: The maximum resident set size (KB) = 720112 + 0: The total amount of wall time = 68.954082 + 0: The maximum resident set size (KB) = 722864 -Test 208 control_stochy_debug_gnu PASS +Test 210 control_stochy_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_debug_p8_gnu -Checking test 209 control_debug_p8_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_debug_p8_gnu +Checking test 211 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 74.029948 - 0: The maximum resident set size (KB) = 1505856 + 0: The total amount of wall time = 69.254260 + 0: The maximum resident set size (KB) = 1506216 -Test 209 control_debug_p8_gnu PASS +Test 211 control_debug_p8_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_flake_debug_gnu -Checking test 210 rap_flake_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_flake_debug_gnu +Checking test 212 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 113.880336 - 0: The maximum resident set size (KB) = 1094716 + 0: The total amount of wall time = 109.219670 + 0: The maximum resident set size (KB) = 1100068 -Test 210 rap_flake_debug_gnu PASS +Test 212 rap_flake_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_clm_lake_debug_gnu -Checking test 211 rap_clm_lake_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_clm_lake_debug_gnu +Checking test 213 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 125.509647 - 0: The maximum resident set size (KB) = 1099588 + 0: The total amount of wall time = 124.685422 + 0: The maximum resident set size (KB) = 1100840 -Test 211 rap_clm_lake_debug_gnu PASS +Test 213 rap_clm_lake_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/gnv1_c96_no_nest_debug_gnu -Checking test 212 gnv1_c96_no_nest_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/gnv1_c96_no_nest_debug_gnu +Checking test 214 gnv1_c96_no_nest_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -6969,15 +7103,15 @@ Checking test 212 gnv1_c96_no_nest_debug_gnu results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.853079 - 0: The maximum resident set size (KB) = 1102260 + 0: The total amount of wall time = 188.694786 + 0: The maximum resident set size (KB) = 1103840 -Test 212 gnv1_c96_no_nest_debug_gnu PASS +Test 214 gnv1_c96_no_nest_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_dyn32_phy32_gnu -Checking test 213 rap_control_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_dyn32_phy32_gnu +Checking test 215 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7023,15 +7157,15 @@ Checking test 213 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 423.031689 - 0: The maximum resident set size (KB) = 965536 + 0: The total amount of wall time = 426.836309 + 0: The maximum resident set size (KB) = 967220 -Test 213 rap_control_dyn32_phy32_gnu PASS +Test 215 rap_control_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_dyn32_phy32_gnu -Checking test 214 hrrr_control_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_dyn32_phy32_gnu +Checking test 216 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7077,15 +7211,15 @@ Checking test 214 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.577202 - 0: The maximum resident set size (KB) = 950672 + 0: The total amount of wall time = 217.611049 + 0: The maximum resident set size (KB) = 950712 -Test 214 hrrr_control_dyn32_phy32_gnu PASS +Test 216 hrrr_control_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_2threads_dyn32_phy32_gnu -Checking test 215 rap_2threads_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_2threads_dyn32_phy32_gnu +Checking test 217 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7131,15 +7265,15 @@ Checking test 215 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 395.803328 - 0: The maximum resident set size (KB) = 972176 + 0: The total amount of wall time = 393.866877 + 0: The maximum resident set size (KB) = 968340 -Test 215 rap_2threads_dyn32_phy32_gnu PASS +Test 217 rap_2threads_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_2threads_dyn32_phy32_gnu +Checking test 218 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7185,15 +7319,15 @@ Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.065231 - 0: The maximum resident set size (KB) = 878732 + 0: The total amount of wall time = 200.335322 + 0: The maximum resident set size (KB) = 891028 -Test 216 hrrr_control_2threads_dyn32_phy32_gnu PASS +Test 218 hrrr_control_2threads_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_decomp_dyn32_phy32_gnu +Checking test 219 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7239,15 +7373,15 @@ Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.874609 - 0: The maximum resident set size (KB) = 960524 + 0: The total amount of wall time = 222.967868 + 0: The maximum resident set size (KB) = 953192 -Test 217 hrrr_control_decomp_dyn32_phy32_gnu PASS +Test 219 hrrr_control_decomp_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_restart_dyn32_phy32_gnu -Checking test 218 rap_restart_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_restart_dyn32_phy32_gnu +Checking test 220 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -7285,29 +7419,29 @@ Checking test 218 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 316.379568 - 0: The maximum resident set size (KB) = 860268 + 0: The total amount of wall time = 319.057744 + 0: The maximum resident set size (KB) = 860104 -Test 218 rap_restart_dyn32_phy32_gnu PASS +Test 220 rap_restart_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_restart_dyn32_phy32_gnu -Checking test 219 hrrr_control_restart_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_restart_dyn32_phy32_gnu +Checking test 221 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 112.735366 - 0: The maximum resident set size (KB) = 859816 + 0: The total amount of wall time = 114.129742 + 0: The maximum resident set size (KB) = 856484 -Test 219 hrrr_control_restart_dyn32_phy32_gnu PASS +Test 221 hrrr_control_restart_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_control_gnu -Checking test 220 conus13km_control_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_control_gnu +Checking test 222 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -7322,41 +7456,41 @@ Checking test 220 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 154.448872 - 0: The maximum resident set size (KB) = 1266768 + 0: The total amount of wall time = 144.693618 + 0: The maximum resident set size (KB) = 1269860 -Test 220 conus13km_control_gnu PASS +Test 222 conus13km_control_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_2threads_gnu -Checking test 221 conus13km_2threads_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_2threads_gnu +Checking test 223 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 59.416812 - 0: The maximum resident set size (KB) = 1175628 + 0: The total amount of wall time = 65.715676 + 0: The maximum resident set size (KB) = 1179528 -Test 221 conus13km_2threads_gnu PASS +Test 223 conus13km_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_restart_mismatch_gnu -Checking test 222 conus13km_restart_mismatch_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_restart_mismatch_gnu +Checking test 224 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 79.485099 - 0: The maximum resident set size (KB) = 938804 + 0: The total amount of wall time = 82.857418 + 0: The maximum resident set size (KB) = 929880 -Test 222 conus13km_restart_mismatch_gnu PASS +Test 224 conus13km_restart_mismatch_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_dyn64_phy32_gnu -Checking test 223 rap_control_dyn64_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_dyn64_phy32_gnu +Checking test 225 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7402,43 +7536,43 @@ Checking test 223 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 252.828581 - 0: The maximum resident set size (KB) = 990068 + 0: The total amount of wall time = 254.642359 + 0: The maximum resident set size (KB) = 990004 -Test 223 rap_control_dyn64_phy32_gnu PASS +Test 225 rap_control_dyn64_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_debug_dyn32_phy32_gnu -Checking test 224 rap_control_debug_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_debug_dyn32_phy32_gnu +Checking test 226 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 111.566293 - 0: The maximum resident set size (KB) = 974912 + 0: The total amount of wall time = 114.376541 + 0: The maximum resident set size (KB) = 975728 -Test 224 rap_control_debug_dyn32_phy32_gnu PASS +Test 226 rap_control_debug_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_debug_dyn32_phy32_gnu -Checking test 225 hrrr_control_debug_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_debug_dyn32_phy32_gnu +Checking test 227 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 111.162339 - 0: The maximum resident set size (KB) = 969444 + 0: The total amount of wall time = 106.978547 + 0: The maximum resident set size (KB) = 965400 -Test 225 hrrr_control_debug_dyn32_phy32_gnu PASS +Test 227 hrrr_control_debug_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_debug_gnu -Checking test 226 conus13km_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_debug_gnu +Checking test 228 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -7451,15 +7585,15 @@ Checking test 226 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 324.177594 - 0: The maximum resident set size (KB) = 1280308 + 0: The total amount of wall time = 317.053317 + 0: The maximum resident set size (KB) = 1284968 -Test 226 conus13km_debug_gnu PASS +Test 228 conus13km_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_debug_qr_gnu -Checking test 227 conus13km_debug_qr_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_debug_qr_gnu +Checking test 229 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -7472,284 +7606,115 @@ Checking test 227 conus13km_debug_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 333.405763 - 0: The maximum resident set size (KB) = 968820 + 0: The total amount of wall time = 332.056553 + 0: The maximum resident set size (KB) = 955760 -Test 227 conus13km_debug_qr_gnu PASS +Test 229 conus13km_debug_qr_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_debug_2threads_gnu -Checking test 228 conus13km_debug_2threads_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_debug_2threads_gnu +Checking test 230 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 193.984855 - 0: The maximum resident set size (KB) = 1189888 + 0: The total amount of wall time = 184.939726 + 0: The maximum resident set size (KB) = 1188628 -Test 228 conus13km_debug_2threads_gnu PASS +Test 230 conus13km_debug_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_radar_tten_debug_gnu -Checking test 229 conus13km_radar_tten_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_radar_tten_debug_gnu +Checking test 231 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 330.890413 - 0: The maximum resident set size (KB) = 1350312 + 0: The total amount of wall time = 314.765979 + 0: The maximum resident set size (KB) = 1350192 -Test 229 conus13km_radar_tten_debug_gnu PASS +Test 231 conus13km_radar_tten_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_dyn64_phy32_debug_gnu -Checking test 230 rap_control_dyn64_phy32_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_dyn64_phy32_debug_gnu +Checking test 232 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 115.546808 - 0: The maximum resident set size (KB) = 997780 + 0: The total amount of wall time = 112.612834 + 0: The maximum resident set size (KB) = 1001428 -Test 230 rap_control_dyn64_phy32_debug_gnu PASS +Test 232 rap_control_dyn64_phy32_debug_gnu PASS FAILED TESTS: -cpld_control_pdlib_p8_intel 027 failed in run_test -144 gnv1_nested_intel failed in check_result -gnv1_nested_intel 144 failed in run_test +hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel 147 failed in run_test +hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel 148 failed in run_test REGRESSION TEST FAILED -Thu Feb 1 00:58:03 CST 2024 -Elapsed time: 10h:09m:07s. Have a nice day! -Thu Feb 1 08:01:44 CST 2024 +Fri Feb 2 01:06:28 AM CST 2024 +Elapsed time: 03h:05m:56s. Have a nice day! +Fri Feb 2 09:10:46 AM CST 2024 Start Regression test -Testing UFSWM Hash: 2d9959c5ab71b771c51e1d5995792df7c00e0a9c +Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 7437f73df4b43e8924b6493c5067544af097ad78 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g7437f73) + eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b7587dfeacd95f43da0595dee42b78a2d78653e9 FV3 (remotes/origin/feature/hafsv2_baseline_with_ssc) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile hafsw_intel elapsed time 593 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2sw_pdlib_intel elapsed time 1106 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile hafs_mom6w_intel elapsed time 620 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_faster_intel elapsed time 618 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1314058/cpld_control_pdlib_p8_intel -Checking test 001 cpld_control_pdlib_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 830.409917 - 0: The maximum resident set size (KB) = 1821180 +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2610419/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK -Test 001 cpld_control_pdlib_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1314058/gnv1_nested_intel -Checking test 002 gnv1_nested_intel results .... - Comparing atmf006.nc ............ALT CHECK......NOT OK - Comparing sfcf006.nc ............ALT CHECK......NOT OK - Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK - - 0: The total amount of wall time = 244.033190 - 0: The maximum resident set size (KB) = 894344 - -Test 002 gnv1_nested_intel FAIL + 0: The total amount of wall time = 611.746251 + 0: The maximum resident set size (KB) = 845960 -FAILED TESTS: -002 gnv1_nested_intel failed in check_result +Test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -REGRESSION TEST FAILED -Thu Feb 1 08:58:55 CST 2024 -Elapsed time: 00h:57m:12s. Have a nice day! -Thu Feb 1 11:44:01 CST 2024 -Start Regression test -Testing UFSWM Hash: 2e11465479217c0751804666044de9f1368a4649 -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 7437f73df4b43e8924b6493c5067544af097ad78 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g7437f73) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b7587dfeacd95f43da0595dee42b78a2d78653e9 FV3 (remotes/origin/feature/hafsv2_baseline_with_ssc) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile hafsw_intel elapsed time 576 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2226321/gnv1_nested_intel -Checking test 001 gnv1_nested_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2610419/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 247.443272 - 0: The maximum resident set size (KB) = 899684 + 0: The total amount of wall time = 930.155979 + 0: The maximum resident set size (KB) = 828484 -Test 001 gnv1_nested_intel PASS Tries: 2 +Test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 1 12:14:38 CST 2024 -Elapsed time: 00h:30m:38s. Have a nice day! +Fri Feb 2 09:50:52 AM CST 2024 +Elapsed time: 00h:40m:07s. Have a nice day! From e41408ae592aa1e3fe586ab058b5320cd96afda6 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 2 Feb 2024 16:24:20 +0000 Subject: [PATCH 51/63] WCOSS2 RT Log --- tests/logs/RegressionTests_wcoss2.log | 1068 +++++++++++++------------ 1 file changed, 552 insertions(+), 516 deletions(-) diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index d97d945e40..329af578a8 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,53 +1,54 @@ -Thu Feb 1 13:51:03 UTC 2024 +Fri Feb 2 14:52:50 UTC 2024 Start Regression test -Testing UFSWM Hash: 290f403d11b3d80a53037659000cc4c0d09e1e89 +Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.3.11-39-g89603d1) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 7437f73df4b43e8924b6493c5067544af097ad78 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g7437f73) + eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b7587dfeacd95f43da0595dee42b78a2d78653e9 FV3 (remotes/origin/develop-159-gb7587df) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 537 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 336 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 915 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 1150 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1031 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 957 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 887 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 549 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 873 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 351 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 974 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 610 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 1023 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 601 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 830 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 507 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1165 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 550 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 601 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1375 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1852 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 282 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 711 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1689 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1556 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 639 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 539 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 733 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 1204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1482 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 522 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 478 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 602 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 1591 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 1987 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 692 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 583 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 1925 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 1225 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 1299 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 777 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 684 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 1190 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 929 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 893 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 817 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 591 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 848 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 1357 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 945 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 1209 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 855 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 952 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 685 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 2049 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 647 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 2042 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 888 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 660 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 1066 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 519 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -112,14 +113,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 323.790136 -The maximum resident set size (KB) = 2979036 +The total amount of wall time = 324.850250 +The maximum resident set size (KB) = 2975356 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -183,14 +184,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 913.132658 -The maximum resident set size (KB) = 1588808 +The total amount of wall time = 912.379039 +The maximum resident set size (KB) = 1597888 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_gfsv17_iau_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -236,14 +237,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK -The total amount of wall time = 993.102335 -The maximum resident set size (KB) = 1717168 +The total amount of wall time = 985.243331 +The maximum resident set size (KB) = 1709500 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_restart_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -296,14 +297,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 463.777971 -The maximum resident set size (KB) = 846348 +The total amount of wall time = 456.988684 +The maximum resident set size (KB) = 847148 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_mpi_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -367,14 +368,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1064.665368 -The maximum resident set size (KB) = 1576076 +The total amount of wall time = 1061.046801 +The maximum resident set size (KB) = 1566132 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_debug_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -426,14 +427,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1407.269946 -The maximum resident set size (KB) = 1604152 +The total amount of wall time = 1378.059478 +The maximum resident set size (KB) = 1605044 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -498,14 +499,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 369.408417 -The maximum resident set size (KB) = 3003140 +The total amount of wall time = 365.297021 +The maximum resident set size (KB) = 3003056 Test 007 cpld_control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -558,14 +559,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 217.915891 -The maximum resident set size (KB) = 3061036 +The total amount of wall time = 214.800326 +The maximum resident set size (KB) = 3062980 Test 008 cpld_restart_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -630,14 +631,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 370.928234 -The maximum resident set size (KB) = 3026616 +The total amount of wall time = 368.417233 +The maximum resident set size (KB) = 3026936 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_restart_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -690,14 +691,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 219.804688 -The maximum resident set size (KB) = 3079252 +The total amount of wall time = 221.402393 +The maximum resident set size (KB) = 3082140 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -750,14 +751,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 332.941228 -The maximum resident set size (KB) = 3316512 +The total amount of wall time = 326.065685 +The maximum resident set size (KB) = 3314956 Test 011 cpld_2threads_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -810,14 +811,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 364.048301 -The maximum resident set size (KB) = 3002580 +The total amount of wall time = 360.952796 +The maximum resident set size (KB) = 2998896 Test 012 cpld_decomp_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_mpi_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -870,14 +871,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 311.253227 -The maximum resident set size (KB) = 2930308 +The total amount of wall time = 303.952062 +The maximum resident set size (KB) = 2930384 Test 013 cpld_mpi_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -942,14 +943,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 371.099554 -The maximum resident set size (KB) = 3004608 +The total amount of wall time = 364.716914 +The maximum resident set size (KB) = 3000748 Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_bmark_p8_intel Checking test 015 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -997,14 +998,14 @@ Checking test 015 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 762.483197 -The maximum resident set size (KB) = 3952848 +The total amount of wall time = 742.274248 +The maximum resident set size (KB) = 3951876 Test 015 cpld_bmark_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_restart_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_restart_bmark_p8_intel Checking test 016 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1052,14 +1053,14 @@ Checking test 016 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 522.310377 -The maximum resident set size (KB) = 4250760 +The total amount of wall time = 538.171329 +The maximum resident set size (KB) = 4252096 Test 016 cpld_restart_bmark_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_s2sa_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_s2sa_p8_intel Checking test 017 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1110,14 +1111,14 @@ Checking test 017 cpld_s2sa_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 354.031878 -The maximum resident set size (KB) = 2967928 +The total amount of wall time = 344.615868 +The maximum resident set size (KB) = 2967804 Test 017 cpld_s2sa_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_noaero_p8_intel Checking test 018 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1181,14 +1182,14 @@ Checking test 018 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 277.458046 -The maximum resident set size (KB) = 1589452 +The total amount of wall time = 276.368922 +The maximum resident set size (KB) = 1587680 Test 018 cpld_control_noaero_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_nowave_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_nowave_noaero_p8_intel Checking test 019 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1250,14 +1251,14 @@ Checking test 019 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 279.010749 -The maximum resident set size (KB) = 1635252 +The total amount of wall time = 282.041096 +The maximum resident set size (KB) = 1632768 Test 019 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_noaero_p8_agrid_intel Checking test 020 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1319,14 +1320,14 @@ Checking test 020 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 276.360071 -The maximum resident set size (KB) = 1632648 +The total amount of wall time = 276.711443 +The maximum resident set size (KB) = 1639640 Test 020 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_c48_intel Checking test 021 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1376,14 +1377,14 @@ Checking test 021 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 410.458973 -The maximum resident set size (KB) = 2648468 +The total amount of wall time = 406.393301 +The maximum resident set size (KB) = 2642836 Test 021 cpld_control_c48_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_p8_faster_intel Checking test 022 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1448,14 +1449,14 @@ Checking test 022 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 358.813314 -The maximum resident set size (KB) = 3009744 +The total amount of wall time = 367.975397 +The maximum resident set size (KB) = 3001504 Test 022 cpld_control_p8_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_pdlib_p8_intel Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1519,14 +1520,14 @@ Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 921.953871 -The maximum resident set size (KB) = 1605796 +The total amount of wall time = 923.558766 +The maximum resident set size (KB) = 1598108 Test 023 cpld_control_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_restart_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_restart_pdlib_p8_intel Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1578,14 +1579,14 @@ Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 472.090861 -The maximum resident set size (KB) = 899508 +The total amount of wall time = 463.507514 +The maximum resident set size (KB) = 895780 Test 024 cpld_restart_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_mpi_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_mpi_pdlib_p8_intel Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1649,14 +1650,14 @@ Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1077.520946 -The maximum resident set size (KB) = 1570472 +The total amount of wall time = 1071.742843 +The maximum resident set size (KB) = 1579496 Test 025 cpld_mpi_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_debug_pdlib_p8_intel Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1708,14 +1709,14 @@ Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1491.249713 -The maximum resident set size (KB) = 1608728 +The total amount of wall time = 1491.574286 +The maximum resident set size (KB) = 1618936 Test 026 cpld_debug_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_flake_intel Checking test 027 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1726,14 +1727,14 @@ Checking test 027 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 213.021765 -The maximum resident set size (KB) = 576464 +The total amount of wall time = 214.222515 +The maximum resident set size (KB) = 572544 Test 027 control_flake_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_CubedSphereGrid_intel Checking test 028 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1760,14 +1761,14 @@ Checking test 028 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 131.572601 -The maximum resident set size (KB) = 524528 +The total amount of wall time = 131.391796 +The maximum resident set size (KB) = 523780 Test 028 control_CubedSphereGrid_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_CubedSphereGrid_parallel_intel Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1782,14 +1783,14 @@ Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 139.652585 -The maximum resident set size (KB) = 529704 +The total amount of wall time = 137.916394 +The maximum resident set size (KB) = 525976 Test 029 control_CubedSphereGrid_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_latlon_intel Checking test 030 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1800,14 +1801,14 @@ Checking test 030 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.477481 -The maximum resident set size (KB) = 522980 +The total amount of wall time = 133.279314 +The maximum resident set size (KB) = 525972 Test 030 control_latlon_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_wrtGauss_netcdf_parallel_intel Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1818,14 +1819,14 @@ Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.954011 -The maximum resident set size (KB) = 523776 +The total amount of wall time = 135.509591 +The maximum resident set size (KB) = 523108 Test 031 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_c48_intel Checking test 032 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1864,14 +1865,14 @@ Checking test 032 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 330.395703 -The maximum resident set size (KB) = 716092 +The total amount of wall time = 331.306415 +The maximum resident set size (KB) = 719120 Test 032 control_c48_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_c192_intel Checking test 033 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1882,14 +1883,14 @@ Checking test 033 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 530.531235 -The maximum resident set size (KB) = 641444 +The total amount of wall time = 531.747266 +The maximum resident set size (KB) = 637892 Test 033 control_c192_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_c384_intel Checking test 034 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1900,14 +1901,14 @@ Checking test 034 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 584.739315 -The maximum resident set size (KB) = 954420 +The total amount of wall time = 663.650186 +The maximum resident set size (KB) = 953108 Test 034 control_c384_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_c384gdas_intel Checking test 035 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1950,14 +1951,14 @@ Checking test 035 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 518.089367 -The maximum resident set size (KB) = 1093888 +The total amount of wall time = 616.432227 +The maximum resident set size (KB) = 1091800 Test 035 control_c384gdas_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_stochy_intel Checking test 036 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1968,28 +1969,28 @@ Checking test 036 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.333050 -The maximum resident set size (KB) = 528620 +The total amount of wall time = 88.690104 +The maximum resident set size (KB) = 531140 Test 036 control_stochy_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_stochy_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_stochy_restart_intel Checking test 037 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 50.544529 -The maximum resident set size (KB) = 501908 +The total amount of wall time = 49.559091 +The maximum resident set size (KB) = 331420 Test 037 control_stochy_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_lndp_intel Checking test 038 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2000,14 +2001,14 @@ Checking test 038 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 85.560500 -The maximum resident set size (KB) = 527448 +The total amount of wall time = 84.309769 +The maximum resident set size (KB) = 527364 Test 038 control_lndp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_iovr4_intel Checking test 039 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2022,14 +2023,14 @@ Checking test 039 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.720522 -The maximum resident set size (KB) = 521864 +The total amount of wall time = 133.412380 +The maximum resident set size (KB) = 522564 Test 039 control_iovr4_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_iovr5_intel Checking test 040 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2044,14 +2045,14 @@ Checking test 040 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.292771 -The maximum resident set size (KB) = 521040 +The total amount of wall time = 134.377632 +The maximum resident set size (KB) = 521272 Test 040 control_iovr5_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_p8_intel Checking test 041 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2098,14 +2099,14 @@ Checking test 041 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 170.509338 -The maximum resident set size (KB) = 1506336 +The total amount of wall time = 165.244287 +The maximum resident set size (KB) = 1500888 Test 041 control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_p8_ugwpv1_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_p8_ugwpv1_intel Checking test 042 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2152,14 +2153,14 @@ Checking test 042 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 168.113964 -The maximum resident set size (KB) = 1501464 +The total amount of wall time = 161.705804 +The maximum resident set size (KB) = 1508052 Test 042 control_p8_ugwpv1_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_restart_p8_intel Checking test 043 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2198,14 +2199,14 @@ Checking test 043 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 90.954477 -The maximum resident set size (KB) = 689956 +The total amount of wall time = 93.541245 +The maximum resident set size (KB) = 690292 Test 043 control_restart_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_noqr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_noqr_p8_intel Checking test 044 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2252,14 +2253,14 @@ Checking test 044 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 167.482215 -The maximum resident set size (KB) = 1493164 +The total amount of wall time = 164.031126 +The maximum resident set size (KB) = 1489908 Test 044 control_noqr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_restart_noqr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_restart_noqr_p8_intel Checking test 045 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2298,14 +2299,14 @@ Checking test 045 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 88.259952 -The maximum resident set size (KB) = 692688 +The total amount of wall time = 92.365104 +The maximum resident set size (KB) = 698096 Test 045 control_restart_noqr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_decomp_p8_intel Checking test 046 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2348,14 +2349,14 @@ Checking test 046 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 173.764975 -The maximum resident set size (KB) = 1499732 +The total amount of wall time = 169.907861 +The maximum resident set size (KB) = 1497292 Test 046 control_decomp_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_2threads_p8_intel Checking test 047 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2398,14 +2399,14 @@ Checking test 047 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 151.123204 -The maximum resident set size (KB) = 1592956 +The total amount of wall time = 143.066824 +The maximum resident set size (KB) = 1589784 Test 047 control_2threads_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_p8_lndp_intel Checking test 048 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2424,14 +2425,14 @@ Checking test 048 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 296.191318 -The maximum resident set size (KB) = 1509224 +The total amount of wall time = 294.242694 +The maximum resident set size (KB) = 1512144 Test 048 control_p8_lndp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_p8_rrtmgp_intel Checking test 049 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2478,14 +2479,14 @@ Checking test 049 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 222.536285 -The maximum resident set size (KB) = 1554760 +The total amount of wall time = 219.801910 +The maximum resident set size (KB) = 1555936 Test 049 control_p8_rrtmgp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_p8_mynn_intel Checking test 050 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2532,14 +2533,14 @@ Checking test 050 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 170.921166 -The maximum resident set size (KB) = 1504776 +The total amount of wall time = 169.968776 +The maximum resident set size (KB) = 1510424 Test 050 control_p8_mynn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/merra2_thompson_intel Checking test 051 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2586,14 +2587,14 @@ Checking test 051 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 202.391724 -The maximum resident set size (KB) = 1515296 +The total amount of wall time = 201.702826 +The maximum resident set size (KB) = 1507992 Test 051 merra2_thompson_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_control_intel Checking test 052 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2604,28 +2605,28 @@ Checking test 052 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 290.614675 -The maximum resident set size (KB) = 607356 +The total amount of wall time = 290.435316 +The maximum resident set size (KB) = 608076 Test 052 regional_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_restart_intel Checking test 053 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 153.931943 -The maximum resident set size (KB) = 779668 +The total amount of wall time = 183.137747 +The maximum resident set size (KB) = 781716 Test 053 regional_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2636,14 +2637,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 305.261860 -The maximum resident set size (KB) = 606192 +The total amount of wall time = 314.580327 +The maximum resident set size (KB) = 606356 Test 054 regional_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2654,14 +2655,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 174.841366 -The maximum resident set size (KB) = 665760 +The total amount of wall time = 175.228403 +The maximum resident set size (KB) = 664992 Test 055 regional_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2669,28 +2670,28 @@ Checking test 056 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 281.185375 -The maximum resident set size (KB) = 1146052 +The total amount of wall time = 285.127278 +The maximum resident set size (KB) = 1147180 Test 056 regional_noquilt_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 285.655718 -The maximum resident set size (KB) = 609536 +The total amount of wall time = 285.519464 +The maximum resident set size (KB) = 607816 Test 057 regional_netcdf_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_2dwrtdecomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2701,14 +2702,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 284.828585 -The maximum resident set size (KB) = 606396 +The total amount of wall time = 304.245603 +The maximum resident set size (KB) = 606184 Test 058 regional_2dwrtdecomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2719,14 +2720,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 379.563765 -The maximum resident set size (KB) = 1578432 +The total amount of wall time = 408.260214 +The maximum resident set size (KB) = 1581148 Test 059 regional_wofs_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2773,14 +2774,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 408.097626 -The maximum resident set size (KB) = 919328 +The total amount of wall time = 416.008682 +The maximum resident set size (KB) = 914848 Test 060 rap_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2791,14 +2792,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 241.291600 -The maximum resident set size (KB) = 1093072 +The total amount of wall time = 242.320482 +The maximum resident set size (KB) = 1091424 Test 061 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2845,14 +2846,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 421.776399 -The maximum resident set size (KB) = 916020 +The total amount of wall time = 434.322378 +The maximum resident set size (KB) = 916328 Test 062 rap_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2899,14 +2900,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 371.795938 -The maximum resident set size (KB) = 1005980 +The total amount of wall time = 379.396689 +The maximum resident set size (KB) = 1006244 Test 063 rap_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2945,14 +2946,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 208.437299 -The maximum resident set size (KB) = 786056 +The total amount of wall time = 210.029682 +The maximum resident set size (KB) = 788104 Test 064 rap_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2999,14 +3000,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 406.820077 -The maximum resident set size (KB) = 909880 +The total amount of wall time = 415.714708 +The maximum resident set size (KB) = 913448 Test 065 rap_sfcdiff_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_sfcdiff_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3053,14 +3054,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 421.510278 -The maximum resident set size (KB) = 911160 +The total amount of wall time = 430.016914 +The maximum resident set size (KB) = 915276 Test 066 rap_sfcdiff_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_sfcdiff_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3099,14 +3100,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 302.690314 -The maximum resident set size (KB) = 787400 +The total amount of wall time = 303.680783 +The maximum resident set size (KB) = 784776 Test 067 rap_sfcdiff_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3153,14 +3154,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 206.986896 -The maximum resident set size (KB) = 906948 +The total amount of wall time = 216.302057 +The maximum resident set size (KB) = 908064 Test 068 hrrr_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_control_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_control_decomp_intel Checking test 069 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3207,14 +3208,14 @@ Checking test 069 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 214.535074 -The maximum resident set size (KB) = 904060 +The total amount of wall time = 213.288395 +The maximum resident set size (KB) = 906992 Test 069 hrrr_control_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_control_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_control_2threads_intel Checking test 070 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3261,28 +3262,28 @@ Checking test 070 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.750587 -The maximum resident set size (KB) = 990224 +The total amount of wall time = 197.248832 +The maximum resident set size (KB) = 993320 Test 070 hrrr_control_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_control_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_control_restart_intel Checking test 071 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 109.052025 -The maximum resident set size (KB) = 743648 +The total amount of wall time = 108.925705 +The maximum resident set size (KB) = 741132 Test 071 hrrr_control_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rrfs_v1beta_intel Checking test 072 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3329,14 +3330,14 @@ Checking test 072 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 398.345396 -The maximum resident set size (KB) = 904260 +The total amount of wall time = 405.453484 +The maximum resident set size (KB) = 910252 Test 072 rrfs_v1beta_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rrfs_v1nssl_intel Checking test 073 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3351,14 +3352,14 @@ Checking test 073 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 486.134694 -The maximum resident set size (KB) = 1873476 +The total amount of wall time = 490.545057 +The maximum resident set size (KB) = 1874656 Test 073 rrfs_v1nssl_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rrfs_v1nssl_nohailnoccn_intel Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3373,14 +3374,14 @@ Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 473.096316 -The maximum resident set size (KB) = 1860224 +The total amount of wall time = 474.206781 +The maximum resident set size (KB) = 1857484 Test 074 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_csawmg_intel Checking test 075 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3391,14 +3392,14 @@ Checking test 075 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 338.625597 -The maximum resident set size (KB) = 599792 +The total amount of wall time = 335.859935 +The maximum resident set size (KB) = 596600 Test 075 control_csawmg_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_csawmgt_intel Checking test 076 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3409,14 +3410,14 @@ Checking test 076 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 333.347020 -The maximum resident set size (KB) = 596804 +The total amount of wall time = 348.766568 +The maximum resident set size (KB) = 598772 Test 076 control_csawmgt_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_ras_intel Checking test 077 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3427,26 +3428,26 @@ Checking test 077 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 183.973376 -The maximum resident set size (KB) = 561188 +The total amount of wall time = 183.120542 +The maximum resident set size (KB) = 561648 Test 077 control_ras_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_wam_intel Checking test 078 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 119.104348 -The maximum resident set size (KB) = 270776 +The total amount of wall time = 118.765160 +The maximum resident set size (KB) = 271112 Test 078 control_wam_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_p8_faster_intel Checking test 079 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3493,14 +3494,14 @@ Checking test 079 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 158.409869 -The maximum resident set size (KB) = 1515620 +The total amount of wall time = 160.034376 +The maximum resident set size (KB) = 1513584 Test 079 control_p8_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_control_faster_intel Checking test 080 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3511,14 +3512,14 @@ Checking test 080 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 277.043327 -The maximum resident set size (KB) = 610612 +The total amount of wall time = 280.039436 +The maximum resident set size (KB) = 610332 Test 080 regional_control_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_CubedSphereGrid_debug_intel Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3545,364 +3546,364 @@ Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 162.114249 -The maximum resident set size (KB) = 685464 +The total amount of wall time = 159.194622 +The maximum resident set size (KB) = 681960 Test 081 control_CubedSphereGrid_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_wrtGauss_netcdf_parallel_debug_intel Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 157.547046 -The maximum resident set size (KB) = 689108 +The total amount of wall time = 158.577592 +The maximum resident set size (KB) = 690744 Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_stochy_debug_intel Checking test 083 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.546177 -The maximum resident set size (KB) = 689176 +The total amount of wall time = 179.043462 +The maximum resident set size (KB) = 690520 Test 083 control_stochy_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_lndp_debug_intel Checking test 084 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.247890 -The maximum resident set size (KB) = 691712 +The total amount of wall time = 162.171692 +The maximum resident set size (KB) = 692412 Test 084 control_lndp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_csawmg_debug_intel Checking test 085 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 253.038093 -The maximum resident set size (KB) = 732412 +The total amount of wall time = 251.270856 +The maximum resident set size (KB) = 731036 Test 085 control_csawmg_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_csawmgt_debug_intel Checking test 086 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 246.750727 -The maximum resident set size (KB) = 733372 +The total amount of wall time = 246.127431 +The maximum resident set size (KB) = 730232 Test 086 control_csawmgt_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_ras_debug_intel Checking test 087 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.603610 -The maximum resident set size (KB) = 702188 +The total amount of wall time = 163.124758 +The maximum resident set size (KB) = 699380 Test 087 control_ras_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_diag_debug_intel Checking test 088 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.230089 -The maximum resident set size (KB) = 745016 +The total amount of wall time = 163.531381 +The maximum resident set size (KB) = 746008 Test 088 control_diag_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_debug_p8_intel Checking test 089 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 168.464786 -The maximum resident set size (KB) = 1519068 +The total amount of wall time = 165.487537 +The maximum resident set size (KB) = 1525760 Test 089 control_debug_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_debug_intel Checking test 090 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1051.791511 -The maximum resident set size (KB) = 631620 +The total amount of wall time = 1054.572030 +The maximum resident set size (KB) = 633864 Test 090 regional_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_control_debug_intel Checking test 091 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.612679 -The maximum resident set size (KB) = 1075364 +The total amount of wall time = 300.057020 +The maximum resident set size (KB) = 1077380 Test 091 rap_control_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_control_debug_intel Checking test 092 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.192352 -The maximum resident set size (KB) = 1071232 +The total amount of wall time = 292.195196 +The maximum resident set size (KB) = 1066368 Test 092 hrrr_control_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_gf_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_gf_debug_intel Checking test 093 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.927442 -The maximum resident set size (KB) = 1074508 +The total amount of wall time = 295.882089 +The maximum resident set size (KB) = 1075032 Test 093 hrrr_gf_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_c3_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_c3_debug_intel Checking test 094 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.354572 -The maximum resident set size (KB) = 1073164 +The total amount of wall time = 299.560233 +The maximum resident set size (KB) = 1070880 Test 094 hrrr_c3_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_unified_drag_suite_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_unified_drag_suite_debug_intel Checking test 095 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.173545 -The maximum resident set size (KB) = 1074464 +The total amount of wall time = 299.845762 +The maximum resident set size (KB) = 1075936 Test 095 rap_unified_drag_suite_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_diag_debug_intel Checking test 096 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 312.811192 -The maximum resident set size (KB) = 1160344 +The total amount of wall time = 310.553632 +The maximum resident set size (KB) = 1155580 Test 096 rap_diag_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_cires_ugwp_debug_intel Checking test 097 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.553078 -The maximum resident set size (KB) = 1076580 +The total amount of wall time = 305.756721 +The maximum resident set size (KB) = 1076188 Test 097 rap_cires_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_unified_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_unified_ugwp_debug_intel Checking test 098 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.915380 -The maximum resident set size (KB) = 1072040 +The total amount of wall time = 305.651692 +The maximum resident set size (KB) = 1076520 Test 098 rap_unified_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_lndp_debug_intel Checking test 099 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.928247 -The maximum resident set size (KB) = 1078588 +The total amount of wall time = 301.580502 +The maximum resident set size (KB) = 1078080 Test 099 rap_lndp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_progcld_thompson_debug_intel Checking test 100 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.765109 -The maximum resident set size (KB) = 1075364 +The total amount of wall time = 300.438383 +The maximum resident set size (KB) = 1076280 Test 100 rap_progcld_thompson_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_noah_debug_intel Checking test 101 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.968723 -The maximum resident set size (KB) = 1074828 +The total amount of wall time = 294.218348 +The maximum resident set size (KB) = 1074540 Test 101 rap_noah_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_sfcdiff_debug_intel Checking test 102 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.678890 -The maximum resident set size (KB) = 1075368 +The total amount of wall time = 306.913318 +The maximum resident set size (KB) = 1073700 Test 102 rap_sfcdiff_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 490.897199 -The maximum resident set size (KB) = 1068384 +The total amount of wall time = 498.111337 +The maximum resident set size (KB) = 1075024 Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rrfs_v1beta_debug_intel Checking test 104 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.049035 -The maximum resident set size (KB) = 1067548 +The total amount of wall time = 300.668738 +The maximum resident set size (KB) = 1069884 Test 104 rrfs_v1beta_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_clm_lake_debug_intel Checking test 105 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 353.623436 -The maximum resident set size (KB) = 1077500 +The total amount of wall time = 353.748975 +The maximum resident set size (KB) = 1074208 Test 105 rap_clm_lake_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_flake_debug_intel Checking test 106 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.835251 -The maximum resident set size (KB) = 1077172 +The total amount of wall time = 302.169036 +The maximum resident set size (KB) = 1076768 Test 106 rap_flake_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/gnv1_c96_no_nest_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/gnv1_c96_no_nest_debug_intel Checking test 107 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3943,26 +3944,26 @@ Checking test 107 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 525.827395 -The maximum resident set size (KB) = 1081004 +The total amount of wall time = 523.838046 +The maximum resident set size (KB) = 1077860 Test 107 gnv1_c96_no_nest_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_wam_debug_intel Checking test 108 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 300.413904 -The maximum resident set size (KB) = 300452 +The total amount of wall time = 300.895246 +The maximum resident set size (KB) = 299612 Test 108 control_wam_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3973,14 +3974,14 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 234.690606 -The maximum resident set size (KB) = 950776 +The total amount of wall time = 228.588819 +The maximum resident set size (KB) = 953200 Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_control_dyn32_phy32_intel Checking test 110 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4027,14 +4028,14 @@ Checking test 110 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 338.150578 -The maximum resident set size (KB) = 789232 +The total amount of wall time = 338.040333 +The maximum resident set size (KB) = 788020 Test 110 rap_control_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_control_dyn32_phy32_intel Checking test 111 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4081,14 +4082,14 @@ Checking test 111 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 179.303988 -The maximum resident set size (KB) = 785908 +The total amount of wall time = 178.997344 +The maximum resident set size (KB) = 785520 Test 111 hrrr_control_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_2threads_dyn32_phy32_intel Checking test 112 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4135,14 +4136,14 @@ Checking test 112 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 308.690667 -The maximum resident set size (KB) = 854980 +The total amount of wall time = 307.540252 +The maximum resident set size (KB) = 853872 Test 112 rap_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_control_2threads_dyn32_phy32_intel Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4189,14 +4190,14 @@ Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 164.238756 -The maximum resident set size (KB) = 837540 +The total amount of wall time = 159.715358 +The maximum resident set size (KB) = 844576 Test 113 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_control_decomp_dyn32_phy32_intel Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4243,14 +4244,14 @@ Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.824332 -The maximum resident set size (KB) = 787348 +The total amount of wall time = 187.250807 +The maximum resident set size (KB) = 789768 Test 114 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_restart_dyn32_phy32_intel Checking test 115 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4289,28 +4290,28 @@ Checking test 115 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 249.371692 -The maximum resident set size (KB) = 688020 +The total amount of wall time = 251.806011 +The maximum resident set size (KB) = 685964 Test 115 rap_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_control_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_control_restart_dyn32_phy32_intel Checking test 116 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 95.220404 -The maximum resident set size (KB) = 666576 +The total amount of wall time = 93.573614 +The maximum resident set size (KB) = 667404 Test 116 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/conus13km_control_intel Checking test 117 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4326,40 +4327,40 @@ Checking test 117 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 125.783127 -The maximum resident set size (KB) = 1001856 +The total amount of wall time = 122.765424 +The maximum resident set size (KB) = 1006656 Test 117 conus13km_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/conus13km_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/conus13km_2threads_intel Checking test 118 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 59.864257 -The maximum resident set size (KB) = 1007384 +The total amount of wall time = 59.104194 +The maximum resident set size (KB) = 1005000 Test 118 conus13km_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/conus13km_restart_mismatch_intel Checking test 119 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 68.668382 -The maximum resident set size (KB) = 881776 +The total amount of wall time = 68.893818 +The maximum resident set size (KB) = 879364 Test 119 conus13km_restart_mismatch_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_control_dyn64_phy32_intel Checking test 120 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4406,42 +4407,42 @@ Checking test 120 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 231.815075 -The maximum resident set size (KB) = 812964 +The total amount of wall time = 231.926496 +The maximum resident set size (KB) = 808620 Test 120 rap_control_dyn64_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_control_debug_dyn32_phy32_intel Checking test 121 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.656256 -The maximum resident set size (KB) = 948404 +The total amount of wall time = 305.821631 +The maximum resident set size (KB) = 952008 Test 121 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_control_debug_dyn32_phy32_intel Checking test 122 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 287.510551 -The maximum resident set size (KB) = 951548 +The total amount of wall time = 290.069849 +The maximum resident set size (KB) = 950812 Test 122 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/conus13km_debug_intel Checking test 123 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4455,14 +4456,14 @@ Checking test 123 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 882.572643 -The maximum resident set size (KB) = 1032616 +The total amount of wall time = 890.305656 +The maximum resident set size (KB) = 1034408 Test 123 conus13km_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/conus13km_debug_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/conus13km_debug_qr_intel Checking test 124 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4476,81 +4477,81 @@ Checking test 124 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 889.407704 -The maximum resident set size (KB) = 706188 +The total amount of wall time = 898.941057 +The maximum resident set size (KB) = 708580 Test 124 conus13km_debug_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/conus13km_debug_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/conus13km_debug_2threads_intel Checking test 125 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 511.235548 -The maximum resident set size (KB) = 1035192 +The total amount of wall time = 516.264166 +The maximum resident set size (KB) = 1038840 Test 125 conus13km_debug_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/conus13km_radar_tten_debug_intel Checking test 126 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 883.743895 -The maximum resident set size (KB) = 1098756 +The total amount of wall time = 901.843787 +The maximum resident set size (KB) = 1102492 Test 126 conus13km_radar_tten_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_control_dyn64_phy32_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_control_dyn64_phy32_debug_intel Checking test 127 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.189433 -The maximum resident set size (KB) = 981764 +The total amount of wall time = 305.489519 +The maximum resident set size (KB) = 979540 Test 127 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_atm_intel Checking test 128 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 345.716656 -The maximum resident set size (KB) = 620756 +The total amount of wall time = 382.483831 +The maximum resident set size (KB) = 615452 Test 128 hafs_regional_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_atm_thompson_gfdlsf_intel Checking test 129 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 318.985423 -The maximum resident set size (KB) = 974648 +The total amount of wall time = 411.342906 +The maximum resident set size (KB) = 966924 Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_atm_ocn_intel Checking test 130 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4559,14 +4560,14 @@ Checking test 130 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 419.553824 -The maximum resident set size (KB) = 665860 +The total amount of wall time = 474.550084 +The maximum resident set size (KB) = 665108 Test 130 hafs_regional_atm_ocn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_atm_wav_intel Checking test 131 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4575,14 +4576,14 @@ Checking test 131 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 751.513807 -The maximum resident set size (KB) = 688704 +The total amount of wall time = 796.441941 +The maximum resident set size (KB) = 688364 Test 131 hafs_regional_atm_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_atm_ocn_wav_intel Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4593,14 +4594,14 @@ Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 958.176150 -The maximum resident set size (KB) = 708204 +The total amount of wall time = 981.136828 +The maximum resident set size (KB) = 702240 Test 132 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_1nest_atm_intel Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4622,14 +4623,14 @@ Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 320.821287 -The maximum resident set size (KB) = 390580 +The total amount of wall time = 327.076169 +The maximum resident set size (KB) = 390340 Test 133 hafs_regional_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_telescopic_2nests_atm_intel Checking test 134 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4638,14 +4639,14 @@ Checking test 134 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 410.683457 -The maximum resident set size (KB) = 407604 +The total amount of wall time = 415.723332 +The maximum resident set size (KB) = 404572 Test 134 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_global_1nest_atm_intel Checking test 135 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4692,14 +4693,14 @@ Checking test 135 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 172.872031 -The maximum resident set size (KB) = 284960 +The total amount of wall time = 188.437350 +The maximum resident set size (KB) = 280748 Test 135 hafs_global_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_global_multiple_4nests_atm_intel Checking test 136 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4781,14 +4782,14 @@ Checking test 136 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 492.603473 -The maximum resident set size (KB) = 373692 +The total amount of wall time = 517.891375 +The maximum resident set size (KB) = 372928 Test 136 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_specified_moving_1nest_atm_intel Checking test 137 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4797,14 +4798,14 @@ Checking test 137 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 223.302563 -The maximum resident set size (KB) = 415864 +The total amount of wall time = 238.965361 +The maximum resident set size (KB) = 413528 Test 137 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_storm_following_1nest_atm_intel Checking test 138 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4826,14 +4827,14 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 208.338511 -The maximum resident set size (KB) = 414764 +The total amount of wall time = 227.399850 +The maximum resident set size (KB) = 415808 Test 138 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4842,28 +4843,28 @@ Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 270.573345 -The maximum resident set size (KB) = 487500 +The total amount of wall time = 300.931621 +The maximum resident set size (KB) = 493796 Test 139 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_global_storm_following_1nest_atm_intel Checking test 140 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 92.088624 -The maximum resident set size (KB) = 320404 +The total amount of wall time = 122.233280 +The maximum resident set size (KB) = 313896 Test 140 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/gnv1_nested_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/gnv1_nested_intel Checking test 141 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4910,28 +4911,28 @@ Checking test 141 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 = 242.998540 -The maximum resident set size (KB) = 677384 +The total amount of wall time = 254.964630 +The maximum resident set size (KB) = 679160 Test 141 gnv1_nested_intel PASS Tries: 2 baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 824.459872 -The maximum resident set size (KB) = 502788 +The total amount of wall time = 832.498349 +The maximum resident set size (KB) = 499816 Test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4942,58 +4943,93 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 517.508159 -The maximum resident set size (KB) = 530984 +The total amount of wall time = 541.800697 +The maximum resident set size (KB) = 525964 Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + +The total amount of wall time = 547.599934 +The maximum resident set size (KB) = 717632 + +Test 144 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK + +The total amount of wall time = 402.036392 +The maximum resident set size (KB) = 734892 + +Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS + + baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_docn_intel -Checking test 144 hafs_regional_docn_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_docn_intel +Checking test 146 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 389.191727 -The maximum resident set size (KB) = 660232 +The total amount of wall time = 424.115242 +The maximum resident set size (KB) = 656172 -Test 144 hafs_regional_docn_intel PASS +Test 146 hafs_regional_docn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_docn_oisst_intel -Checking test 145 hafs_regional_docn_oisst_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_docn_oisst_intel +Checking test 147 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 394.441681 -The maximum resident set size (KB) = 636852 +The total amount of wall time = 416.196673 +The maximum resident set size (KB) = 642224 -Test 145 hafs_regional_docn_oisst_intel PASS +Test 147 hafs_regional_docn_oisst_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_datm_cdeps_intel -Checking test 146 hafs_regional_datm_cdeps_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_datm_cdeps_intel +Checking test 148 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 948.811592 -The maximum resident set size (KB) = 880640 +The total amount of wall time = 954.814343 +The maximum resident set size (KB) = 880476 -Test 146 hafs_regional_datm_cdeps_intel PASS +Test 148 hafs_regional_datm_cdeps_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_p8_atmlnd_sbs_intel -Checking test 147 control_p8_atmlnd_sbs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_p8_atmlnd_sbs_intel +Checking test 149 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5081,15 +5117,15 @@ Checking test 147 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 275.706709 -The maximum resident set size (KB) = 1550112 +The total amount of wall time = 287.580223 +The maximum resident set size (KB) = 1548820 -Test 147 control_p8_atmlnd_sbs_intel PASS +Test 149 control_p8_atmlnd_sbs_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_p8_atmlnd_intel -Checking test 148 control_p8_atmlnd_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_p8_atmlnd_intel +Checking test 150 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5177,15 +5213,15 @@ Checking test 148 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 282.969272 -The maximum resident set size (KB) = 1539696 +The total amount of wall time = 285.833572 +The maximum resident set size (KB) = 1544948 -Test 148 control_p8_atmlnd_intel PASS +Test 150 control_p8_atmlnd_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_restart_p8_atmlnd_intel -Checking test 149 control_restart_p8_atmlnd_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_restart_p8_atmlnd_intel +Checking test 151 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5205,15 +5241,15 @@ Checking test 149 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 154.656555 -The maximum resident set size (KB) = 742028 +The total amount of wall time = 156.401608 +The maximum resident set size (KB) = 743900 -Test 149 control_restart_p8_atmlnd_intel PASS +Test 151 control_restart_p8_atmlnd_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/atmaero_control_p8_intel -Checking test 150 atmaero_control_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/atmaero_control_p8_intel +Checking test 152 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5256,15 +5292,15 @@ Checking test 150 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 240.650404 -The maximum resident set size (KB) = 2853980 +The total amount of wall time = 247.095392 +The maximum resident set size (KB) = 2850036 -Test 150 atmaero_control_p8_intel PASS +Test 152 atmaero_control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/atmaero_control_p8_rad_intel -Checking test 151 atmaero_control_p8_rad_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/atmaero_control_p8_rad_intel +Checking test 153 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5307,15 +5343,15 @@ Checking test 151 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 278.098925 -The maximum resident set size (KB) = 2912204 +The total amount of wall time = 282.697272 +The maximum resident set size (KB) = 2910424 -Test 151 atmaero_control_p8_rad_intel PASS +Test 153 atmaero_control_p8_rad_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/atmaero_control_p8_rad_micro_intel -Checking test 152 atmaero_control_p8_rad_micro_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/atmaero_control_p8_rad_micro_intel +Checking test 154 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5358,15 +5394,15 @@ Checking test 152 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 297.396822 -The maximum resident set size (KB) = 2927128 +The total amount of wall time = 298.575446 +The maximum resident set size (KB) = 2925080 -Test 152 atmaero_control_p8_rad_micro_intel PASS +Test 154 atmaero_control_p8_rad_micro_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_atmaq_debug_intel -Checking test 153 regional_atmaq_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_atmaq_debug_intel +Checking test 155 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5379,12 +5415,12 @@ Checking test 153 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1313.878240 -The maximum resident set size (KB) = 4435852 +The total amount of wall time = 1330.392416 +The maximum resident set size (KB) = 4436752 -Test 153 regional_atmaq_debug_intel PASS +Test 155 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 1 15:09:09 UTC 2024 -Elapsed time: 01h:18m:07s. Have a nice day! +Fri Feb 2 16:24:02 UTC 2024 +Elapsed time: 01h:31m:13s. Have a nice day! From 1b6c920956f009fb9c87f15c334f441af62259bc Mon Sep 17 00:00:00 2001 From: zach1221 Date: Fri, 2 Feb 2024 09:38:38 -0700 Subject: [PATCH 52/63] add derecho RT logs: passed --- tests/logs/RegressionTests_derecho.log | 1293 +++++++++++++----------- 1 file changed, 696 insertions(+), 597 deletions(-) diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 10e4361e67..c8b7294c65 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,59 +1,60 @@ -Wed 31 Jan 2024 11:21:41 AM MST +Thu 01 Feb 2024 09:02:20 PM MST Start Regression test -Testing UFSWM Hash: 2d9959c5ab71b771c51e1d5995792df7c00e0a9c +Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 7437f73df4b43e8924b6493c5067544af097ad78 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g7437f73) + eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b7587dfeacd95f43da0595dee42b78a2d78653e9 FV3 (remotes/origin/feature/hafsv2_baseline_with_ssc) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 640 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 633 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 489 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 695 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 731 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 735 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 762 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 756 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 577 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 299 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 459 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 458 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 142 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 816 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 403 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 1097 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 841 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 338 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 694 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 547 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 333 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 551 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 636 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 822 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 824 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1119 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 558 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1221 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 558 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1133 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 524 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1097 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 528 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1160 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 322 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 538 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 637 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 604 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 490 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 725 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 733 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 725 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 746 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 731 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 581 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 300 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 451 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 461 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 139 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 801 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 934 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 413 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 1105 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 895 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 343 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 701 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 335 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 661 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 832 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 849 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1158 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 572 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1282 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 562 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1148 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 535 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1129 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 584 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1155 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 327 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_p8_mixedmode_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -118,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 279.760061 -The maximum resident set size (KB) = 3000488 +The total amount of wall time = 283.230457 +The maximum resident set size (KB) = 3000264 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_gfsv17_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -189,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 812.500274 -The maximum resident set size (KB) = 1619480 +The total amount of wall time = 812.030642 +The maximum resident set size (KB) = 1608308 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_gfsv17_iau_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -242,14 +243,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK -The total amount of wall time = 891.600903 -The maximum resident set size (KB) = 1746720 +The total amount of wall time = 895.565304 +The maximum resident set size (KB) = 1748620 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_restart_gfsv17_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -302,14 +303,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 417.656048 -The maximum resident set size (KB) = 883988 +The total amount of wall time = 414.421457 +The maximum resident set size (KB) = 880484 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_mpi_gfsv17_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -373,14 +374,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 933.578822 -The maximum resident set size (KB) = 1582512 +The total amount of wall time = 931.825481 +The maximum resident set size (KB) = 1581896 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_debug_gfsv17_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -432,14 +433,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1282.646760 -The maximum resident set size (KB) = 1624300 +The total amount of wall time = 1287.700858 +The maximum resident set size (KB) = 1625336 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -504,14 +505,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 323.965752 -The maximum resident set size (KB) = 3019996 +The total amount of wall time = 324.659688 +The maximum resident set size (KB) = 3017988 Test 007 cpld_control_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_restart_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -564,14 +565,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 185.293053 -The maximum resident set size (KB) = 3072804 +The total amount of wall time = 185.422049 +The maximum resident set size (KB) = 3073332 Test 008 cpld_restart_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_qr_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -636,14 +637,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 324.815970 -The maximum resident set size (KB) = 3050536 +The total amount of wall time = 323.456035 +The maximum resident set size (KB) = 3045904 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_restart_qr_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -696,14 +697,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 184.390427 -The maximum resident set size (KB) = 3100188 +The total amount of wall time = 184.975322 +The maximum resident set size (KB) = 3098128 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_decomp_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_decomp_p8_intel Checking test 011 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -756,14 +757,14 @@ Checking test 011 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 320.616768 -The maximum resident set size (KB) = 3012596 +The total amount of wall time = 321.353128 +The maximum resident set size (KB) = 3013644 Test 011 cpld_decomp_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_mpi_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_mpi_p8_intel Checking test 012 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -816,14 +817,14 @@ Checking test 012 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 260.262727 -The maximum resident set size (KB) = 3307916 +The total amount of wall time = 268.372777 +The maximum resident set size (KB) = 3306124 Test 012 cpld_mpi_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_ciceC_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_ciceC_p8_intel Checking test 013 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -888,14 +889,14 @@ Checking test 013 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 319.553156 -The maximum resident set size (KB) = 3026220 +The total amount of wall time = 320.816737 +The maximum resident set size (KB) = 3026524 Test 013 cpld_control_ciceC_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_c192_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_c192_p8_intel Checking test 014 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -948,14 +949,14 @@ Checking test 014 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -The total amount of wall time = 508.832891 -The maximum resident set size (KB) = 3559536 +The total amount of wall time = 511.509138 +The maximum resident set size (KB) = 3556288 Test 014 cpld_control_c192_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_restart_c192_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_restart_c192_p8_intel Checking test 015 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1008,14 +1009,14 @@ Checking test 015 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -The total amount of wall time = 323.877903 -The maximum resident set size (KB) = 3536268 +The total amount of wall time = 334.999139 +The maximum resident set size (KB) = 3537332 Test 015 cpld_restart_c192_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_s2sa_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_s2sa_p8_intel Checking test 016 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1066,14 +1067,14 @@ Checking test 016 cpld_s2sa_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 300.198017 -The maximum resident set size (KB) = 2987920 +The total amount of wall time = 307.266937 +The maximum resident set size (KB) = 2987784 Test 016 cpld_s2sa_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_noaero_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_noaero_p8_intel Checking test 017 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1137,14 +1138,14 @@ Checking test 017 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 238.801712 -The maximum resident set size (KB) = 1599528 +The total amount of wall time = 251.869615 +The maximum resident set size (KB) = 1595728 Test 017 cpld_control_noaero_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_nowave_noaero_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_nowave_noaero_p8_intel Checking test 018 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1206,14 +1207,14 @@ Checking test 018 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 240.848414 -The maximum resident set size (KB) = 1645876 +The total amount of wall time = 243.222511 +The maximum resident set size (KB) = 1651452 Test 018 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_debug_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_debug_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_debug_p8_intel Checking test 019 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1266,14 +1267,14 @@ Checking test 019 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 454.869628 -The maximum resident set size (KB) = 3073396 +The total amount of wall time = 461.147085 +The maximum resident set size (KB) = 3073360 Test 019 cpld_debug_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_debug_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_debug_noaero_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_debug_noaero_p8_intel Checking test 020 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1325,14 +1326,14 @@ Checking test 020 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 304.092190 -The maximum resident set size (KB) = 1624084 +The total amount of wall time = 304.784212 +The maximum resident set size (KB) = 1620532 Test 020 cpld_debug_noaero_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_noaero_p8_agrid_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_noaero_p8_agrid_intel Checking test 021 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1394,14 +1395,14 @@ Checking test 021 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 240.399183 -The maximum resident set size (KB) = 1646744 +The total amount of wall time = 259.770185 +The maximum resident set size (KB) = 1643960 Test 021 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_c48_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_c48_intel Checking test 022 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1451,14 +1452,14 @@ Checking test 022 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 384.185264 -The maximum resident set size (KB) = 2668144 +The total amount of wall time = 387.481417 +The maximum resident set size (KB) = 2665468 Test 022 cpld_control_c48_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_pdlib_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_pdlib_p8_intel Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1522,14 +1523,14 @@ Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 824.250906 -The maximum resident set size (KB) = 1628060 +The total amount of wall time = 827.911114 +The maximum resident set size (KB) = 1620544 Test 023 cpld_control_pdlib_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_restart_pdlib_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_restart_pdlib_p8_intel Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1581,14 +1582,14 @@ Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 419.363585 -The maximum resident set size (KB) = 942240 +The total amount of wall time = 422.336948 +The maximum resident set size (KB) = 938692 Test 024 cpld_restart_pdlib_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_mpi_pdlib_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_mpi_pdlib_p8_intel Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1652,14 +1653,14 @@ Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 944.041341 -The maximum resident set size (KB) = 1588408 +The total amount of wall time = 951.832758 +The maximum resident set size (KB) = 1585256 Test 025 cpld_mpi_pdlib_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_debug_pdlib_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_debug_pdlib_p8_intel Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1711,14 +1712,14 @@ Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1352.741685 -The maximum resident set size (KB) = 1640312 +The total amount of wall time = 1346.162608 +The maximum resident set size (KB) = 1632800 Test 026 cpld_debug_pdlib_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_flake_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_flake_intel Checking test 027 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1729,14 +1730,14 @@ Checking test 027 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 194.608674 -The maximum resident set size (KB) = 596624 +The total amount of wall time = 195.262459 +The maximum resident set size (KB) = 596576 Test 027 control_flake_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_CubedSphereGrid_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_CubedSphereGrid_intel Checking test 028 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1763,14 +1764,14 @@ Checking test 028 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 112.684448 -The maximum resident set size (KB) = 546336 +The total amount of wall time = 112.355510 +The maximum resident set size (KB) = 546188 Test 028 control_CubedSphereGrid_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_CubedSphereGrid_parallel_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_CubedSphereGrid_parallel_intel Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1785,14 +1786,14 @@ Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 118.253743 -The maximum resident set size (KB) = 551232 +The total amount of wall time = 117.481963 +The maximum resident set size (KB) = 549356 Test 029 control_CubedSphereGrid_parallel_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_latlon_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_latlon_intel Checking test 030 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1803,14 +1804,14 @@ Checking test 030 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 114.578136 -The maximum resident set size (KB) = 542420 +The total amount of wall time = 115.112998 +The maximum resident set size (KB) = 543332 Test 030 control_latlon_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_wrtGauss_netcdf_parallel_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_wrtGauss_netcdf_parallel_intel Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1821,14 +1822,14 @@ Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 114.902854 -The maximum resident set size (KB) = 541368 +The total amount of wall time = 115.855770 +The maximum resident set size (KB) = 546444 Test 031 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_c48_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_c48_intel Checking test 032 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1867,14 +1868,14 @@ Checking test 032 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 310.652034 -The maximum resident set size (KB) = 728988 +The total amount of wall time = 308.896806 +The maximum resident set size (KB) = 729944 Test 032 control_c48_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_c192_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_c192_intel Checking test 033 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1885,14 +1886,14 @@ Checking test 033 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 457.645577 -The maximum resident set size (KB) = 660860 +The total amount of wall time = 500.581723 +The maximum resident set size (KB) = 665752 Test 033 control_c192_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_c384_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_c384_intel Checking test 034 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1903,14 +1904,14 @@ Checking test 034 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 471.974202 -The maximum resident set size (KB) = 983112 +The total amount of wall time = 476.096528 +The maximum resident set size (KB) = 986676 Test 034 control_c384_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_c384gdas_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_c384gdas_intel Checking test 035 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1953,14 +1954,14 @@ Checking test 035 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 416.888922 -The maximum resident set size (KB) = 1126876 +The total amount of wall time = 423.301303 +The maximum resident set size (KB) = 1125112 Test 035 control_c384gdas_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_stochy_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_stochy_intel Checking test 036 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1971,28 +1972,28 @@ Checking test 036 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 74.466307 -The maximum resident set size (KB) = 552848 +The total amount of wall time = 75.678926 +The maximum resident set size (KB) = 552640 Test 036 control_stochy_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_stochy_restart_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_stochy_restart_intel Checking test 037 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 40.976142 -The maximum resident set size (KB) = 362048 +The total amount of wall time = 41.234423 +The maximum resident set size (KB) = 364196 Test 037 control_stochy_restart_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_lndp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_lndp_intel Checking test 038 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2003,14 +2004,14 @@ Checking test 038 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 71.078323 -The maximum resident set size (KB) = 546840 +The total amount of wall time = 72.613323 +The maximum resident set size (KB) = 547756 Test 038 control_lndp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_iovr4_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_iovr4_intel Checking test 039 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2025,14 +2026,14 @@ Checking test 039 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 114.677347 -The maximum resident set size (KB) = 545844 +The total amount of wall time = 118.306658 +The maximum resident set size (KB) = 545500 Test 039 control_iovr4_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_iovr5_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_iovr5_intel Checking test 040 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2047,14 +2048,14 @@ Checking test 040 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 114.807587 -The maximum resident set size (KB) = 546860 +The total amount of wall time = 114.768688 +The maximum resident set size (KB) = 548072 Test 040 control_iovr5_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_intel Checking test 041 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2101,14 +2102,14 @@ Checking test 041 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 137.771187 -The maximum resident set size (KB) = 1522604 +The total amount of wall time = 140.824731 +The maximum resident set size (KB) = 1518752 Test 041 control_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_p8_ugwpv1_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_ugwpv1_intel Checking test 042 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2155,14 +2156,14 @@ Checking test 042 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 137.902473 -The maximum resident set size (KB) = 1522568 +The total amount of wall time = 140.704627 +The maximum resident set size (KB) = 1520172 Test 042 control_p8_ugwpv1_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_restart_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_restart_p8_intel Checking test 043 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2201,14 +2202,14 @@ Checking test 043 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 74.547629 -The maximum resident set size (KB) = 722732 +The total amount of wall time = 75.009874 +The maximum resident set size (KB) = 715548 Test 043 control_restart_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_noqr_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_noqr_p8_intel Checking test 044 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2255,14 +2256,14 @@ Checking test 044 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 139.046386 -The maximum resident set size (KB) = 1509816 +The total amount of wall time = 138.208180 +The maximum resident set size (KB) = 1507276 Test 044 control_noqr_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_restart_noqr_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_restart_noqr_p8_intel Checking test 045 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2301,14 +2302,14 @@ Checking test 045 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 72.760263 -The maximum resident set size (KB) = 723596 +The total amount of wall time = 74.221574 +The maximum resident set size (KB) = 724264 Test 045 control_restart_noqr_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_decomp_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_decomp_p8_intel Checking test 046 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2351,14 +2352,14 @@ Checking test 046 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 143.574153 -The maximum resident set size (KB) = 1513228 +The total amount of wall time = 143.588699 +The maximum resident set size (KB) = 1516408 Test 046 control_decomp_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_p8_lndp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_lndp_intel Checking test 047 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2377,14 +2378,14 @@ Checking test 047 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 251.801876 -The maximum resident set size (KB) = 1517444 +The total amount of wall time = 251.397830 +The maximum resident set size (KB) = 1528760 Test 047 control_p8_lndp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_p8_rrtmgp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_rrtmgp_intel Checking test 048 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2431,14 +2432,14 @@ Checking test 048 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.733092 -The maximum resident set size (KB) = 1571372 +The total amount of wall time = 186.891160 +The maximum resident set size (KB) = 1578968 Test 048 control_p8_rrtmgp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_p8_mynn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_mynn_intel Checking test 049 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2485,14 +2486,14 @@ Checking test 049 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 141.674198 -The maximum resident set size (KB) = 1529700 +The total amount of wall time = 141.957934 +The maximum resident set size (KB) = 1523564 Test 049 control_p8_mynn_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/merra2_thompson_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/merra2_thompson_intel Checking test 050 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2539,14 +2540,14 @@ Checking test 050 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 167.055771 -The maximum resident set size (KB) = 1533164 +The total amount of wall time = 171.258072 +The maximum resident set size (KB) = 1521484 Test 050 merra2_thompson_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_control_intel Checking test 051 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2557,28 +2558,28 @@ Checking test 051 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 256.727461 -The maximum resident set size (KB) = 626844 +The total amount of wall time = 256.207332 +The maximum resident set size (KB) = 625216 Test 051 regional_control_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_restart_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_restart_intel Checking test 052 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 137.181883 -The maximum resident set size (KB) = 796180 +The total amount of wall time = 139.013498 +The maximum resident set size (KB) = 796168 Test 052 regional_restart_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_decomp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_decomp_intel Checking test 053 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2589,14 +2590,14 @@ Checking test 053 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 269.860102 -The maximum resident set size (KB) = 625848 +The total amount of wall time = 269.260817 +The maximum resident set size (KB) = 626576 Test 053 regional_decomp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_noquilt_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_noquilt_intel Checking test 054 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2604,28 +2605,28 @@ Checking test 054 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 254.517716 -The maximum resident set size (KB) = 1157716 +The total amount of wall time = 254.071609 +The maximum resident set size (KB) = 1152828 Test 054 regional_noquilt_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_netcdf_parallel_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_netcdf_parallel_intel Checking test 055 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 254.851671 -The maximum resident set size (KB) = 619644 +The total amount of wall time = 255.889488 +The maximum resident set size (KB) = 620196 Test 055 regional_netcdf_parallel_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_2dwrtdecomp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_2dwrtdecomp_intel Checking test 056 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2636,14 +2637,14 @@ Checking test 056 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 257.071410 -The maximum resident set size (KB) = 623076 +The total amount of wall time = 259.162776 +The maximum resident set size (KB) = 627336 Test 056 regional_2dwrtdecomp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_wofs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_wofs_intel Checking test 057 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2654,14 +2655,14 @@ Checking test 057 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 325.053852 -The maximum resident set size (KB) = 1594140 +The total amount of wall time = 324.970533 +The maximum resident set size (KB) = 2427312 Test 057 regional_wofs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_control_intel Checking test 058 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2708,14 +2709,14 @@ Checking test 058 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 354.864580 -The maximum resident set size (KB) = 933848 +The total amount of wall time = 359.566126 +The maximum resident set size (KB) = 933132 Test 058 rap_control_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_spp_sppt_shum_skeb_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_spp_sppt_shum_skeb_intel Checking test 059 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2726,14 +2727,14 @@ Checking test 059 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 201.154277 -The maximum resident set size (KB) = 1116840 +The total amount of wall time = 204.465039 +The maximum resident set size (KB) = 1119296 Test 059 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_decomp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_decomp_intel Checking test 060 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2780,14 +2781,14 @@ Checking test 060 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 372.159898 -The maximum resident set size (KB) = 930420 +The total amount of wall time = 372.940462 +The maximum resident set size (KB) = 930332 Test 060 rap_decomp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_restart_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_restart_intel Checking test 061 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2826,14 +2827,14 @@ Checking test 061 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.252509 -The maximum resident set size (KB) = 808412 +The total amount of wall time = 180.727229 +The maximum resident set size (KB) = 807604 Test 061 rap_restart_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_sfcdiff_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_sfcdiff_intel Checking test 062 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2880,14 +2881,14 @@ Checking test 062 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 353.442623 -The maximum resident set size (KB) = 933392 +The total amount of wall time = 356.234409 +The maximum resident set size (KB) = 931388 Test 062 rap_sfcdiff_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_sfcdiff_decomp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_sfcdiff_decomp_intel Checking test 063 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2934,14 +2935,14 @@ Checking test 063 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 370.288976 -The maximum resident set size (KB) = 930540 +The total amount of wall time = 370.767296 +The maximum resident set size (KB) = 934060 Test 063 rap_sfcdiff_decomp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_sfcdiff_restart_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_sfcdiff_restart_intel Checking test 064 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2980,14 +2981,14 @@ Checking test 064 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 262.810983 -The maximum resident set size (KB) = 810404 +The total amount of wall time = 263.920127 +The maximum resident set size (KB) = 811584 Test 064 rap_sfcdiff_restart_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_intel Checking test 065 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3034,14 +3035,14 @@ Checking test 065 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.568883 -The maximum resident set size (KB) = 929904 +The total amount of wall time = 181.487227 +The maximum resident set size (KB) = 927740 Test 065 hrrr_control_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_control_decomp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_decomp_intel Checking test 066 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3088,14 +3089,14 @@ Checking test 066 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 186.162933 -The maximum resident set size (KB) = 927284 +The total amount of wall time = 187.507982 +The maximum resident set size (KB) = 928328 Test 066 hrrr_control_decomp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_control_2threads_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_2threads_intel Checking test 067 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3142,28 +3143,28 @@ Checking test 067 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 156.762019 -The maximum resident set size (KB) = 1012716 +The total amount of wall time = 159.470191 +The maximum resident set size (KB) = 1018260 Test 067 hrrr_control_2threads_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_control_restart_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_restart_intel Checking test 068 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 94.667963 -The maximum resident set size (KB) = 761152 +The total amount of wall time = 95.298687 +The maximum resident set size (KB) = 760228 Test 068 hrrr_control_restart_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rrfs_v1beta_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rrfs_v1beta_intel Checking test 069 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3210,14 +3211,14 @@ Checking test 069 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 345.832235 -The maximum resident set size (KB) = 929492 +The total amount of wall time = 348.791056 +The maximum resident set size (KB) = 928128 Test 069 rrfs_v1beta_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rrfs_v1nssl_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rrfs_v1nssl_intel Checking test 070 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3232,14 +3233,14 @@ Checking test 070 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 434.303372 -The maximum resident set size (KB) = 1886836 +The total amount of wall time = 431.177792 +The maximum resident set size (KB) = 1887560 Test 070 rrfs_v1nssl_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rrfs_v1nssl_nohailnoccn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rrfs_v1nssl_nohailnoccn_intel Checking test 071 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3254,14 +3255,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 415.678061 -The maximum resident set size (KB) = 1876648 +The total amount of wall time = 418.194264 +The maximum resident set size (KB) = 1875344 Test 071 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_csawmg_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_csawmg_intel Checking test 072 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3272,14 +3273,14 @@ Checking test 072 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 299.039228 -The maximum resident set size (KB) = 613940 +The total amount of wall time = 300.193596 +The maximum resident set size (KB) = 616988 Test 072 control_csawmg_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_csawmgt_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_csawmgt_intel Checking test 073 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3290,14 +3291,14 @@ Checking test 073 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 295.459653 -The maximum resident set size (KB) = 618040 +The total amount of wall time = 296.358628 +The maximum resident set size (KB) = 615084 Test 073 control_csawmgt_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_ras_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_ras_intel Checking test 074 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3308,26 +3309,26 @@ Checking test 074 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 161.303661 -The maximum resident set size (KB) = 580660 +The total amount of wall time = 162.324854 +The maximum resident set size (KB) = 583196 Test 074 control_ras_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_wam_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_wam_intel Checking test 075 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 107.414009 -The maximum resident set size (KB) = 312012 +The total amount of wall time = 103.043433 +The maximum resident set size (KB) = 303492 Test 075 control_wam_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_p8_faster_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_faster_intel Checking test 076 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3374,14 +3375,14 @@ Checking test 076 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 130.900081 -The maximum resident set size (KB) = 1527852 +The total amount of wall time = 147.381340 +The maximum resident set size (KB) = 1516736 Test 076 control_p8_faster_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_control_faster_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_control_faster_intel Checking test 077 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3392,14 +3393,14 @@ Checking test 077 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 245.075280 -The maximum resident set size (KB) = 623808 +The total amount of wall time = 244.978013 +The maximum resident set size (KB) = 628104 Test 077 regional_control_faster_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_CubedSphereGrid_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_CubedSphereGrid_debug_intel Checking test 078 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3426,364 +3427,364 @@ Checking test 078 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 139.543915 -The maximum resident set size (KB) = 720116 +The total amount of wall time = 144.941451 +The maximum resident set size (KB) = 717668 Test 078 control_CubedSphereGrid_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_wrtGauss_netcdf_parallel_debug_intel Checking test 079 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 139.527607 -The maximum resident set size (KB) = 718560 +The total amount of wall time = 140.656568 +The maximum resident set size (KB) = 717840 Test 079 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_stochy_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_stochy_debug_intel Checking test 080 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.300731 -The maximum resident set size (KB) = 725748 +The total amount of wall time = 159.500244 +The maximum resident set size (KB) = 726256 Test 080 control_stochy_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_lndp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_lndp_debug_intel Checking test 081 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 141.959238 -The maximum resident set size (KB) = 724384 +The total amount of wall time = 147.718855 +The maximum resident set size (KB) = 725612 Test 081 control_lndp_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_csawmg_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_csawmg_debug_intel Checking test 082 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 221.769526 -The maximum resident set size (KB) = 767532 +The total amount of wall time = 228.345034 +The maximum resident set size (KB) = 760960 Test 082 control_csawmg_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_csawmgt_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_csawmgt_debug_intel Checking test 083 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 220.683967 -The maximum resident set size (KB) = 766676 +The total amount of wall time = 223.626752 +The maximum resident set size (KB) = 760804 Test 083 control_csawmgt_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_ras_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_ras_debug_intel Checking test 084 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 146.841063 -The maximum resident set size (KB) = 729064 +The total amount of wall time = 144.474941 +The maximum resident set size (KB) = 732296 Test 084 control_ras_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_diag_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_diag_debug_intel Checking test 085 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 146.924831 -The maximum resident set size (KB) = 781244 +The total amount of wall time = 146.591942 +The maximum resident set size (KB) = 777472 Test 085 control_diag_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_debug_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_debug_p8_intel Checking test 086 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 148.507296 -The maximum resident set size (KB) = 1546384 +The total amount of wall time = 147.918817 +The maximum resident set size (KB) = 1552600 Test 086 control_debug_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_debug_intel Checking test 087 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 970.003304 -The maximum resident set size (KB) = 664284 +The total amount of wall time = 941.701750 +The maximum resident set size (KB) = 2427312 Test 087 regional_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_control_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_control_debug_intel Checking test 088 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 267.232215 -The maximum resident set size (KB) = 1105516 +The total amount of wall time = 265.637999 +The maximum resident set size (KB) = 1107432 Test 088 rap_control_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_control_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_debug_intel Checking test 089 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 264.149889 -The maximum resident set size (KB) = 1098728 +The total amount of wall time = 265.728716 +The maximum resident set size (KB) = 1098252 Test 089 hrrr_control_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_gf_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_gf_debug_intel Checking test 090 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 265.123380 -The maximum resident set size (KB) = 1105152 +The total amount of wall time = 303.033773 +The maximum resident set size (KB) = 1105408 Test 090 hrrr_gf_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_c3_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_c3_debug_intel Checking test 091 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 266.576536 -The maximum resident set size (KB) = 1109356 +The total amount of wall time = 270.096415 +The maximum resident set size (KB) = 1106272 Test 091 hrrr_c3_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_unified_drag_suite_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_unified_drag_suite_debug_intel Checking test 092 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 269.259748 -The maximum resident set size (KB) = 1105416 +The total amount of wall time = 275.891914 +The maximum resident set size (KB) = 1105624 Test 092 rap_unified_drag_suite_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_diag_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_diag_debug_intel Checking test 093 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 278.912600 -The maximum resident set size (KB) = 1189972 +The total amount of wall time = 280.067575 +The maximum resident set size (KB) = 1189884 Test 093 rap_diag_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_cires_ugwp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_cires_ugwp_debug_intel Checking test 094 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 270.833907 -The maximum resident set size (KB) = 1107424 +The total amount of wall time = 271.028202 +The maximum resident set size (KB) = 1106776 Test 094 rap_cires_ugwp_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_unified_ugwp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_unified_ugwp_debug_intel Checking test 095 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 273.778137 -The maximum resident set size (KB) = 1108256 +The total amount of wall time = 273.399230 +The maximum resident set size (KB) = 1105908 Test 095 rap_unified_ugwp_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_lndp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_lndp_debug_intel Checking test 096 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 276.476121 -The maximum resident set size (KB) = 1105904 +The total amount of wall time = 279.495436 +The maximum resident set size (KB) = 1103608 Test 096 rap_lndp_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_progcld_thompson_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_progcld_thompson_debug_intel Checking test 097 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 267.744208 -The maximum resident set size (KB) = 1106456 +The total amount of wall time = 267.768748 +The maximum resident set size (KB) = 1104816 Test 097 rap_progcld_thompson_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_noah_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_noah_debug_intel Checking test 098 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 266.612270 -The maximum resident set size (KB) = 1109008 +The total amount of wall time = 264.005637 +The maximum resident set size (KB) = 1099304 Test 098 rap_noah_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_sfcdiff_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_sfcdiff_debug_intel Checking test 099 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 272.318791 -The maximum resident set size (KB) = 1106952 +The total amount of wall time = 267.166474 +The maximum resident set size (KB) = 1107884 Test 099 rap_sfcdiff_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 100 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 443.896598 -The maximum resident set size (KB) = 1104608 +The total amount of wall time = 437.636338 +The maximum resident set size (KB) = 1107040 Test 100 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rrfs_v1beta_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rrfs_v1beta_debug_intel Checking test 101 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 261.479556 -The maximum resident set size (KB) = 1103536 +The total amount of wall time = 263.713819 +The maximum resident set size (KB) = 1099040 Test 101 rrfs_v1beta_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_clm_lake_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_clm_lake_debug_intel Checking test 102 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 313.938946 -The maximum resident set size (KB) = 1108684 +The total amount of wall time = 320.271499 +The maximum resident set size (KB) = 1109552 Test 102 rap_clm_lake_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_flake_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_flake_debug_intel Checking test 103 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 271.707961 -The maximum resident set size (KB) = 1106484 +The total amount of wall time = 269.030373 +The maximum resident set size (KB) = 1105040 Test 103 rap_flake_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/gnv1_c96_no_nest_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/gnv1_c96_no_nest_debug_intel Checking test 104 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3824,26 +3825,26 @@ Checking test 104 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 470.816449 -The maximum resident set size (KB) = 1110792 +The total amount of wall time = 462.521373 +The maximum resident set size (KB) = 1109892 Test 104 gnv1_c96_no_nest_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_wam_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_wam_debug_intel Checking test 105 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 267.355255 -The maximum resident set size (KB) = 346976 +The total amount of wall time = 268.333218 +The maximum resident set size (KB) = 347068 -Test 105 control_wam_debug_intel PASS Tries: 2 +Test 105 control_wam_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3854,14 +3855,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 194.346314 -The maximum resident set size (KB) = 974956 +The total amount of wall time = 196.075294 +The maximum resident set size (KB) = 984168 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_control_dyn32_phy32_intel Checking test 107 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3908,14 +3909,14 @@ Checking test 107 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 296.405120 -The maximum resident set size (KB) = 807308 +The total amount of wall time = 297.241617 +The maximum resident set size (KB) = 805572 Test 107 rap_control_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_dyn32_phy32_intel Checking test 108 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3962,14 +3963,14 @@ Checking test 108 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 154.646564 -The maximum resident set size (KB) = 803424 +The total amount of wall time = 157.387367 +The maximum resident set size (KB) = 803684 Test 108 hrrr_control_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_control_decomp_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_decomp_dyn32_phy32_intel Checking test 109 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4016,14 +4017,14 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 163.305470 -The maximum resident set size (KB) = 806840 +The total amount of wall time = 163.978148 +The maximum resident set size (KB) = 805256 Test 109 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_restart_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_restart_dyn32_phy32_intel Checking test 110 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4062,28 +4063,28 @@ Checking test 110 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 220.437707 -The maximum resident set size (KB) = 718784 +The total amount of wall time = 221.697764 +The maximum resident set size (KB) = 711800 Test 110 rap_restart_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_control_restart_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_restart_dyn32_phy32_intel Checking test 111 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 81.537230 -The maximum resident set size (KB) = 700820 +The total amount of wall time = 81.099063 +The maximum resident set size (KB) = 700068 Test 111 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/conus13km_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/conus13km_control_intel Checking test 112 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4099,40 +4100,40 @@ Checking test 112 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 103.279727 -The maximum resident set size (KB) = 1011460 +The total amount of wall time = 104.852111 +The maximum resident set size (KB) = 1011020 Test 112 conus13km_control_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/conus13km_2threads_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/conus13km_2threads_intel Checking test 113 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 42.033378 -The maximum resident set size (KB) = 1009516 +The total amount of wall time = 43.528727 +The maximum resident set size (KB) = 1010460 Test 113 conus13km_2threads_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/conus13km_restart_mismatch_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/conus13km_restart_mismatch_intel Checking test 114 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 56.474443 -The maximum resident set size (KB) = 901364 +The total amount of wall time = 56.923496 +The maximum resident set size (KB) = 901856 Test 114 conus13km_restart_mismatch_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_control_dyn64_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_control_dyn64_phy32_intel Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4179,42 +4180,42 @@ Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 206.665489 -The maximum resident set size (KB) = 834060 +The total amount of wall time = 207.952871 +The maximum resident set size (KB) = 835676 Test 115 rap_control_dyn64_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_control_debug_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_control_debug_dyn32_phy32_intel Checking test 116 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 259.672898 -The maximum resident set size (KB) = 980712 +The total amount of wall time = 294.300725 +The maximum resident set size (KB) = 983540 Test 116 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_control_debug_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_debug_dyn32_phy32_intel Checking test 117 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 259.731580 -The maximum resident set size (KB) = 977452 +The total amount of wall time = 262.469144 +The maximum resident set size (KB) = 975988 Test 117 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/conus13km_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/conus13km_debug_intel Checking test 118 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4228,67 +4229,67 @@ Checking test 118 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 809.944601 -The maximum resident set size (KB) = 1059812 +The total amount of wall time = 799.559745 +The maximum resident set size (KB) = 1055804 Test 118 conus13km_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/conus13km_radar_tten_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/conus13km_radar_tten_debug_intel Checking test 119 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 804.747236 -The maximum resident set size (KB) = 1124832 +The total amount of wall time = 823.875938 +The maximum resident set size (KB) = 1122000 Test 119 conus13km_radar_tten_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_control_dyn64_phy32_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_control_dyn64_phy32_debug_intel Checking test 120 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 260.947905 -The maximum resident set size (KB) = 1009856 +The total amount of wall time = 271.748808 +The maximum resident set size (KB) = 1009240 Test 120 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_atm_intel Checking test 121 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 252.467901 -The maximum resident set size (KB) = 640124 +The total amount of wall time = 259.838092 +The maximum resident set size (KB) = 646392 Test 121 hafs_regional_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_atm_thompson_gfdlsf_intel Checking test 122 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 293.220185 -The maximum resident set size (KB) = 991092 +The total amount of wall time = 299.794954 +The maximum resident set size (KB) = 991016 Test 122 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_atm_ocn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_atm_ocn_intel Checking test 123 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4297,14 +4298,14 @@ Checking test 123 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 364.890191 -The maximum resident set size (KB) = 703844 +The total amount of wall time = 368.428638 +The maximum resident set size (KB) = 701840 Test 123 hafs_regional_atm_ocn_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_atm_wav_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_atm_wav_intel Checking test 124 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4313,14 +4314,14 @@ Checking test 124 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 640.530692 -The maximum resident set size (KB) = 720248 +The total amount of wall time = 635.669980 +The maximum resident set size (KB) = 720464 Test 124 hafs_regional_atm_wav_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_atm_ocn_wav_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_atm_ocn_wav_intel Checking test 125 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4331,14 +4332,14 @@ Checking test 125 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 711.628107 -The maximum resident set size (KB) = 732684 +The total amount of wall time = 713.697314 +The maximum resident set size (KB) = 737096 Test 125 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_1nest_atm_intel Checking test 126 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4360,14 +4361,14 @@ Checking test 126 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 260.928842 -The maximum resident set size (KB) = 403500 +The total amount of wall time = 263.195096 +The maximum resident set size (KB) = 408132 Test 126 hafs_regional_1nest_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_telescopic_2nests_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_telescopic_2nests_atm_intel Checking test 127 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4376,14 +4377,14 @@ Checking test 127 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 328.516149 -The maximum resident set size (KB) = 420888 +The total amount of wall time = 329.482490 +The maximum resident set size (KB) = 418480 Test 127 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_global_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_global_1nest_atm_intel Checking test 128 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4430,14 +4431,14 @@ Checking test 128 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 122.724575 -The maximum resident set size (KB) = 316256 +The total amount of wall time = 123.644163 +The maximum resident set size (KB) = 317624 Test 128 hafs_global_1nest_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_global_multiple_4nests_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_global_multiple_4nests_atm_intel Checking test 129 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4519,14 +4520,14 @@ Checking test 129 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 358.365118 -The maximum resident set size (KB) = 383324 +The total amount of wall time = 373.974645 +The maximum resident set size (KB) = 384156 Test 129 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_specified_moving_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_specified_moving_1nest_atm_intel Checking test 130 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4535,14 +4536,14 @@ Checking test 130 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 182.116077 -The maximum resident set size (KB) = 441276 +The total amount of wall time = 184.431722 +The maximum resident set size (KB) = 435908 Test 130 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_storm_following_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_storm_following_1nest_atm_intel Checking test 131 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4564,14 +4565,14 @@ Checking test 131 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 168.805739 -The maximum resident set size (KB) = 440948 +The total amount of wall time = 171.514979 +The maximum resident set size (KB) = 434536 Test 131 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4580,28 +4581,28 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 208.925198 -The maximum resident set size (KB) = 511296 +The total amount of wall time = 215.334237 +The maximum resident set size (KB) = 513360 Test 132 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_global_storm_following_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_global_storm_following_1nest_atm_intel Checking test 133 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 57.676650 -The maximum resident set size (KB) = 354008 +The total amount of wall time = 57.772937 +The maximum resident set size (KB) = 351404 Test 133 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/gnv1_nested_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/gnv1_nested_intel Checking test 134 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4648,28 +4649,28 @@ Checking test 134 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 182.397919 -The maximum resident set size (KB) = 709272 +The total amount of wall time = 186.845171 +The maximum resident set size (KB) = 709252 Test 134 gnv1_nested_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 700.162935 -The maximum resident set size (KB) = 539960 +The total amount of wall time = 725.891285 +The maximum resident set size (KB) = 535936 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4680,162 +4681,197 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 405.734831 -The maximum resident set size (KB) = 556592 +The total amount of wall time = 410.498619 +The maximum resident set size (KB) = 554476 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... + Comparing atmf006.nc ............MISSING baseline + Comparing sfcf006.nc ............MISSING baseline + Comparing atm.nest02.f006.nc ............MISSING baseline + Comparing sfc.nest02.f006.nc ............MISSING baseline + Comparing archv.2020_238_18.a ............MISSING baseline + Comparing archs.2020_238_18.a ............MISSING baseline + Comparing 20200825.180000.out_grd.ww3 ............MISSING baseline + Comparing 20200825.180000.out_pnt.ww3 ............MISSING baseline + +The total amount of wall time = 420.212987 +The maximum resident set size (KB) = 607660 + +Test 137 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel FAIL Tries: 2 + + +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc ............MISSING baseline + Comparing sfcf003.nc ............MISSING baseline + Comparing atm.nest02.f003.nc ............MISSING baseline + Comparing sfc.nest02.f003.nc ............MISSING baseline + Comparing ocn_2020_08_25_15.nc ............MISSING baseline + Comparing 20200825.150000.out_grd.ww3 ............MISSING baseline + Comparing 20200825.150000.out_pnt.ww3 ............MISSING baseline + +The total amount of wall time = 305.265444 +The maximum resident set size (KB) = 626904 + +Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel FAIL Tries: 2 + + baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_docn_intel -Checking test 137 hafs_regional_docn_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_docn_intel +Checking test 139 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 313.690811 -The maximum resident set size (KB) = 671688 +The total amount of wall time = 320.055312 +The maximum resident set size (KB) = 673124 -Test 137 hafs_regional_docn_intel PASS +Test 139 hafs_regional_docn_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_docn_oisst_intel -Checking test 138 hafs_regional_docn_oisst_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_docn_oisst_intel +Checking test 140 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 316.909174 -The maximum resident set size (KB) = 658180 +The total amount of wall time = 332.730876 +The maximum resident set size (KB) = 658096 -Test 138 hafs_regional_docn_oisst_intel PASS +Test 140 hafs_regional_docn_oisst_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_datm_cdeps_intel -Checking test 139 hafs_regional_datm_cdeps_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_datm_cdeps_intel +Checking test 141 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 959.146786 -The maximum resident set size (KB) = 895948 +The total amount of wall time = 958.544446 +The maximum resident set size (KB) = 892708 -Test 139 hafs_regional_datm_cdeps_intel PASS +Test 141 hafs_regional_datm_cdeps_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_control_cfsr_intel -Checking test 140 datm_cdeps_control_cfsr_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_control_cfsr_intel +Checking test 142 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.793127 -The maximum resident set size (KB) = 755476 +The total amount of wall time = 140.108802 +The maximum resident set size (KB) = 762376 -Test 140 datm_cdeps_control_cfsr_intel PASS +Test 142 datm_cdeps_control_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_restart_cfsr_intel -Checking test 141 datm_cdeps_restart_cfsr_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_restart_cfsr_intel +Checking test 143 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 83.304982 -The maximum resident set size (KB) = 744244 +The total amount of wall time = 84.484693 +The maximum resident set size (KB) = 750308 -Test 141 datm_cdeps_restart_cfsr_intel PASS +Test 143 datm_cdeps_restart_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_control_gefs_intel -Checking test 142 datm_cdeps_control_gefs_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_control_gefs_intel +Checking test 144 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.873242 -The maximum resident set size (KB) = 645532 +The total amount of wall time = 132.621450 +The maximum resident set size (KB) = 640276 -Test 142 datm_cdeps_control_gefs_intel PASS +Test 144 datm_cdeps_control_gefs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_iau_gefs_intel -Checking test 143 datm_cdeps_iau_gefs_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_iau_gefs_intel +Checking test 145 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 135.058726 -The maximum resident set size (KB) = 635368 +The total amount of wall time = 136.822968 +The maximum resident set size (KB) = 639768 -Test 143 datm_cdeps_iau_gefs_intel PASS +Test 145 datm_cdeps_iau_gefs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_stochy_gefs_intel -Checking test 144 datm_cdeps_stochy_gefs_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_stochy_gefs_intel +Checking test 146 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 135.572345 -The maximum resident set size (KB) = 634464 +The total amount of wall time = 134.538905 +The maximum resident set size (KB) = 638300 -Test 144 datm_cdeps_stochy_gefs_intel PASS +Test 146 datm_cdeps_stochy_gefs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_ciceC_cfsr_intel -Checking test 145 datm_cdeps_ciceC_cfsr_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_ciceC_cfsr_intel +Checking test 147 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.134165 -The maximum resident set size (KB) = 744712 +The total amount of wall time = 140.201293 +The maximum resident set size (KB) = 760920 -Test 145 datm_cdeps_ciceC_cfsr_intel PASS +Test 147 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_bulk_cfsr_intel -Checking test 146 datm_cdeps_bulk_cfsr_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_bulk_cfsr_intel +Checking test 148 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.572505 -The maximum resident set size (KB) = 744384 +The total amount of wall time = 141.716254 +The maximum resident set size (KB) = 760400 -Test 146 datm_cdeps_bulk_cfsr_intel PASS +Test 148 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_bulk_gefs_intel -Checking test 147 datm_cdeps_bulk_gefs_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_bulk_gefs_intel +Checking test 149 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 132.974994 -The maximum resident set size (KB) = 633384 +The total amount of wall time = 133.952270 +The maximum resident set size (KB) = 639816 -Test 147 datm_cdeps_bulk_gefs_intel PASS +Test 149 datm_cdeps_bulk_gefs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_mx025_cfsr_intel -Checking test 148 datm_cdeps_mx025_cfsr_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_mx025_cfsr_intel +Checking test 150 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4843,15 +4879,15 @@ Checking test 148 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 327.628096 -The maximum resident set size (KB) = 612676 +The total amount of wall time = 325.121134 +The maximum resident set size (KB) = 614464 -Test 148 datm_cdeps_mx025_cfsr_intel PASS +Test 150 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_mx025_gefs_intel -Checking test 149 datm_cdeps_mx025_gefs_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_mx025_gefs_intel +Checking test 151 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4859,78 +4895,78 @@ Checking test 149 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 320.838181 -The maximum resident set size (KB) = 594540 +The total amount of wall time = 326.557640 +The maximum resident set size (KB) = 597336 -Test 149 datm_cdeps_mx025_gefs_intel PASS +Test 151 datm_cdeps_mx025_gefs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_multiple_files_cfsr_intel -Checking test 150 datm_cdeps_multiple_files_cfsr_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_multiple_files_cfsr_intel +Checking test 152 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.010220 -The maximum resident set size (KB) = 756024 +The total amount of wall time = 141.556039 +The maximum resident set size (KB) = 760424 -Test 150 datm_cdeps_multiple_files_cfsr_intel PASS +Test 152 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_3072x1536_cfsr_intel -Checking test 151 datm_cdeps_3072x1536_cfsr_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_3072x1536_cfsr_intel +Checking test 153 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 225.074038 -The maximum resident set size (KB) = 1941632 +The total amount of wall time = 224.806130 +The maximum resident set size (KB) = 2020568 -Test 151 datm_cdeps_3072x1536_cfsr_intel PASS +Test 153 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_gfs_intel -Checking test 152 datm_cdeps_gfs_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_gfs_intel +Checking test 154 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 228.015404 -The maximum resident set size (KB) = 2004944 +The total amount of wall time = 226.368857 +The maximum resident set size (KB) = 1950832 -Test 152 datm_cdeps_gfs_intel PASS +Test 154 datm_cdeps_gfs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_debug_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_debug_cfsr_intel -Checking test 153 datm_cdeps_debug_cfsr_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_debug_cfsr_intel +Checking test 155 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -The total amount of wall time = 290.792637 -The maximum resident set size (KB) = 749332 +The total amount of wall time = 297.154718 +The maximum resident set size (KB) = 748232 -Test 153 datm_cdeps_debug_cfsr_intel PASS +Test 155 datm_cdeps_debug_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_control_cfsr_faster_intel -Checking test 154 datm_cdeps_control_cfsr_faster_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_control_cfsr_faster_intel +Checking test 156 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 139.454918 -The maximum resident set size (KB) = 743484 +The total amount of wall time = 139.891152 +The maximum resident set size (KB) = 759952 -Test 154 datm_cdeps_control_cfsr_faster_intel PASS +Test 156 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_lnd_gswp3_intel -Checking test 155 datm_cdeps_lnd_gswp3_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_lnd_gswp3_intel +Checking test 157 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4938,15 +4974,15 @@ Checking test 155 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 55.881696 -The maximum resident set size (KB) = 227364 +The total amount of wall time = 57.470842 +The maximum resident set size (KB) = 238636 -Test 155 datm_cdeps_lnd_gswp3_intel PASS +Test 157 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_lnd_era5_intel -Checking test 156 datm_cdeps_lnd_era5_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_lnd_era5_intel +Checking test 158 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -4954,15 +4990,15 @@ Checking test 156 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 52.176574 -The maximum resident set size (KB) = 379708 +The total amount of wall time = 52.407819 +The maximum resident set size (KB) = 377616 -Test 156 datm_cdeps_lnd_era5_intel PASS +Test 158 datm_cdeps_lnd_era5_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_lnd_era5_rst_intel -Checking test 157 datm_cdeps_lnd_era5_rst_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_lnd_era5_rst_intel +Checking test 159 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -4970,15 +5006,15 @@ Checking test 157 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 29.311487 -The maximum resident set size (KB) = 380388 +The total amount of wall time = 31.965341 +The maximum resident set size (KB) = 376088 -Test 157 datm_cdeps_lnd_era5_rst_intel PASS +Test 159 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_p8_atmlnd_sbs_intel -Checking test 158 control_p8_atmlnd_sbs_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_atmlnd_sbs_intel +Checking test 160 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5066,15 +5102,15 @@ Checking test 158 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 385.572146 -The maximum resident set size (KB) = 1556476 +The total amount of wall time = 377.363622 +The maximum resident set size (KB) = 1552628 -Test 158 control_p8_atmlnd_sbs_intel PASS +Test 160 control_p8_atmlnd_sbs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_p8_atmlnd_intel -Checking test 159 control_p8_atmlnd_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_atmlnd_intel +Checking test 161 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5162,15 +5198,15 @@ Checking test 159 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 374.809199 -The maximum resident set size (KB) = 1556084 +The total amount of wall time = 378.515773 +The maximum resident set size (KB) = 1556588 -Test 159 control_p8_atmlnd_intel PASS +Test 161 control_p8_atmlnd_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_restart_p8_atmlnd_intel -Checking test 160 control_restart_p8_atmlnd_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_restart_p8_atmlnd_intel +Checking test 162 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5190,15 +5226,15 @@ Checking test 160 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 181.928940 -The maximum resident set size (KB) = 773120 +The total amount of wall time = 192.617151 +The maximum resident set size (KB) = 771992 -Test 160 control_restart_p8_atmlnd_intel PASS +Test 162 control_restart_p8_atmlnd_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/atmwav_control_noaero_p8_intel -Checking test 161 atmwav_control_noaero_p8_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/atmwav_control_noaero_p8_intel +Checking test 163 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5240,15 +5276,15 @@ Checking test 161 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 81.555574 -The maximum resident set size (KB) = 1556256 +The total amount of wall time = 81.496164 +The maximum resident set size (KB) = 1555864 -Test 161 atmwav_control_noaero_p8_intel PASS +Test 163 atmwav_control_noaero_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_atmwav_intel -Checking test 162 control_atmwav_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_atmwav_intel +Checking test 164 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5291,15 +5327,15 @@ Checking test 162 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 76.884525 -The maximum resident set size (KB) = 562600 +The total amount of wall time = 77.763536 +The maximum resident set size (KB) = 561332 -Test 162 control_atmwav_intel PASS +Test 164 control_atmwav_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/atmaero_control_p8_intel -Checking test 163 atmaero_control_p8_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/atmaero_control_p8_intel +Checking test 165 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5342,15 +5378,15 @@ Checking test 163 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 203.526372 -The maximum resident set size (KB) = 2872004 +The total amount of wall time = 205.597610 +The maximum resident set size (KB) = 2874468 -Test 163 atmaero_control_p8_intel PASS +Test 165 atmaero_control_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/atmaero_control_p8_rad_intel -Checking test 164 atmaero_control_p8_rad_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/atmaero_control_p8_rad_intel +Checking test 166 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5393,15 +5429,15 @@ Checking test 164 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 243.853868 -The maximum resident set size (KB) = 2924700 +The total amount of wall time = 246.914829 +The maximum resident set size (KB) = 2923992 -Test 164 atmaero_control_p8_rad_intel PASS +Test 166 atmaero_control_p8_rad_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/atmaero_control_p8_rad_micro_intel -Checking test 165 atmaero_control_p8_rad_micro_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/atmaero_control_p8_rad_micro_intel +Checking test 167 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5444,12 +5480,75 @@ Checking test 165 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 258.637355 -The maximum resident set size (KB) = 2938548 +The total amount of wall time = 258.277978 +The maximum resident set size (KB) = 2936484 + +Test 167 atmaero_control_p8_rad_micro_intel PASS + +FAILED TESTS: +137 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel failed in check_result +hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel 137 failed in run_test +138 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel failed in check_result +hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel 138 failed in run_test + +REGRESSION TEST FAILED +Thu 01 Feb 2024 10:39:24 PM MST +Elapsed time: 01h:37m:15s. Have a nice day! +Fri 02 Feb 2024 07:59:35 AM MST +Start Regression test + +Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) + 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) + 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) + 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile hafs_mom6w_intel elapsed time 960 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_faster_intel elapsed time 1118 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_67611/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK + +The total amount of wall time = 305.403287 +The maximum resident set size (KB) = 626016 + +Test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS + + +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_67611/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + +The total amount of wall time = 419.472716 +The maximum resident set size (KB) = 608572 -Test 165 atmaero_control_p8_rad_micro_intel PASS +Test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS REGRESSION TEST WAS SUCCESSFUL -Wed 31 Jan 2024 01:51:34 PM MST -Elapsed time: 02h:29m:54s. Have a nice day! +Fri 02 Feb 2024 08:29:24 AM MST +Elapsed time: 00h:29m:49s. Have a nice day! From efa863bcc01287d7c2326cac5d71c941db8b55f8 Mon Sep 17 00:00:00 2001 From: zach1221 Date: Fri, 2 Feb 2024 16:47:15 +0000 Subject: [PATCH 53/63] add control_p8_gnu ORT logs: passed --- tests/logs/OpnReqTests_control_p8_hera.log | 48 +++++++++++----------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 9b25fd6a40..c7ce9c7b36 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed Jan 31 19:20:35 UTC 2024 +Fri Feb 2 02:17:07 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_24457/control_p8_gnu_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_7057/control_p8_gnu_bit_base Checking test bit_base control_p8_gnu results .... Moving baseline bit_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.367920 - 0: The maximum resident set size (KB) = 1304280 + 0: The total amount of wall time = 280.516405 + 0: The maximum resident set size (KB) = 1307816 Test bit_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_24457/control_p8_gnu_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_7057/control_p8_gnu_dbg_base Checking test dbg_base control_p8_gnu results .... Moving baseline dbg_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -106,14 +106,14 @@ Moving baseline dbg_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 925.385783 - 0: The maximum resident set size (KB) = 1289116 + 0: The total amount of wall time = 915.713491 + 0: The maximum resident set size (KB) = 1292056 Test dbg_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_24457/control_p8_gnu_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_7057/control_p8_gnu_dcp Checking test dcp control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -160,14 +160,14 @@ Checking test dcp control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 251.670387 - 0: The maximum resident set size (KB) = 1281048 + 0: The total amount of wall time = 251.429761 + 0: The maximum resident set size (KB) = 1278592 Test dcp control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_24457/control_p8_gnu_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_7057/control_p8_gnu_mpi Checking test mpi control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -214,14 +214,14 @@ Checking test mpi control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 252.393805 - 0: The maximum resident set size (KB) = 1280764 + 0: The total amount of wall time = 250.829038 + 0: The maximum resident set size (KB) = 1281948 Test mpi control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_24457/control_p8_gnu_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_7057/control_p8_gnu_rst Checking test rst control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -268,14 +268,14 @@ Checking test rst control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 253.888089 - 0: The maximum resident set size (KB) = 1285060 + 0: The total amount of wall time = 250.474906 + 0: The maximum resident set size (KB) = 1285948 Test rst control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_24457/control_p8_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_7057/control_p8_gnu_std_base Checking test std_base control_p8_gnu results .... Moving baseline std_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -323,14 +323,14 @@ Moving baseline std_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 249.734159 - 0: The maximum resident set size (KB) = 1283704 + 0: The total amount of wall time = 258.712522 + 0: The maximum resident set size (KB) = 1281208 Test std_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_24457/control_p8_gnu_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_7057/control_p8_gnu_thr Checking test thr control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -377,11 +377,11 @@ Checking test thr control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.695087 - 0: The maximum resident set size (KB) = 1280276 + 0: The total amount of wall time = 248.574949 + 0: The maximum resident set size (KB) = 1279744 Test thr control_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Jan 31 22:36:38 UTC 2024 -Elapsed time: 03h:16m:04s. Have a nice day! +Fri Feb 2 12:53:19 UTC 2024 +Elapsed time: 10h:36m:13s. Have a nice day! From 0106384721ecdca4eecf970b50714745a0cd603e Mon Sep 17 00:00:00 2001 From: zach1221 Date: Fri, 2 Feb 2024 16:47:48 +0000 Subject: [PATCH 54/63] add regional_control_gnu ORT logs: passed --- .../OpnReqTests_regional_control_hera.log | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 2663075317..096a4d9125 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed Jan 31 23:59:22 UTC 2024 +Fri Feb 2 15:30:30 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_160200/regional_control_gnu_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_234117/regional_control_gnu_dcp Checking test dcp regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -14,14 +14,14 @@ Checking test dcp regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 528.769334 - 0: The maximum resident set size (KB) = 590976 + 0: The total amount of wall time = 511.454957 + 0: The maximum resident set size (KB) = 591204 Test dcp regional_control_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_160200/regional_control_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_234117/regional_control_gnu_std_base Checking test std_base regional_control_gnu results .... Moving baseline std_base regional_control_gnu files .... Moving dynf000.nc .........OK @@ -33,14 +33,14 @@ Moving baseline std_base regional_control_gnu files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 515.226916 - 0: The maximum resident set size (KB) = 590664 + 0: The total amount of wall time = 517.871253 + 0: The maximum resident set size (KB) = 594916 Test std_base regional_control_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_160200/regional_control_gnu_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_234117/regional_control_gnu_thr Checking test thr regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -51,11 +51,11 @@ Checking test thr regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 507.542534 - 0: The maximum resident set size (KB) = 589080 + 0: The total amount of wall time = 521.291672 + 0: The maximum resident set size (KB) = 592712 Test thr regional_control_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Feb 1 01:39:48 UTC 2024 -Elapsed time: 01h:40m:27s. Have a nice day! +Fri Feb 2 16:42:10 UTC 2024 +Elapsed time: 01h:11m:40s. Have a nice day! From e982f056726387852482b37ee0590eb52d3f8d74 Mon Sep 17 00:00:00 2001 From: zach1221 Date: Fri, 2 Feb 2024 16:48:13 +0000 Subject: [PATCH 55/63] add cpld_control_gnu ORT logs: passed --- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index b5f4b9de4f..c24923152c 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Thu Feb 1 02:24:12 UTC 2024 +Fri Feb 2 14:02:45 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_208866/cpld_control_nowave_noaero_p8_gnu_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_250216/cpld_control_nowave_noaero_p8_gnu_dbg_base Checking test dbg_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +66,14 @@ Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1241.703813 - 0: The maximum resident set size (KB) = 1409892 + 0: The total amount of wall time = 1251.653326 + 0: The maximum resident set size (KB) = 1407584 Test dbg_base cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_208866/cpld_control_nowave_noaero_p8_gnu_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_250216/cpld_control_nowave_noaero_p8_gnu_rst Checking test rst cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test rst cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 397.708785 - 0: The maximum resident set size (KB) = 1402992 + 0: The total amount of wall time = 377.186122 + 0: The maximum resident set size (KB) = 1394572 Test rst cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_208866/cpld_control_nowave_noaero_p8_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_250216/cpld_control_nowave_noaero_p8_gnu_std_base Checking test std_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +205,11 @@ Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 385.291097 - 0: The maximum resident set size (KB) = 1402388 + 0: The total amount of wall time = 380.074651 + 0: The maximum resident set size (KB) = 1407552 Test std_base cpld_control_nowave_noaero_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Feb 1 03:44:26 UTC 2024 -Elapsed time: 01h:20m:14s. Have a nice day! +Fri Feb 2 15:19:23 UTC 2024 +Elapsed time: 01h:16m:38s. Have a nice day! From eaa2c31926e573494718dd7ec0b090e615c40ce0 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 2 Feb 2024 17:01:29 +0000 Subject: [PATCH 56/63] Acorn RT Log --- tests/logs/RegressionTests_acorn.log | 1260 +++++++++++++------------- 1 file changed, 649 insertions(+), 611 deletions(-) diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index e124483129..1ca75c30fb 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,59 +1,60 @@ -Thu Feb 1 13:54:26 UTC 2024 +Fri Feb 2 14:53:04 UTC 2024 Start Regression test -Testing UFSWM Hash: 2d9959c5ab71b771c51e1d5995792df7c00e0a9c +Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 7437f73df4b43e8924b6493c5067544af097ad78 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g7437f73) + eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b7587dfeacd95f43da0595dee42b78a2d78653e9 FV3 (remotes/origin/feature/hafsv2_baseline_with_ssc) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop-35-g8db821c) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 488 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 179 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 478 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 231 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 518 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 531 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 500 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 491 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 479 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_faster_intel elapsed time 510 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 535 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 516 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 187 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 539 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 527 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile ifi_intel elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 591 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 467 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 170 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 476 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 647 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 528 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atmaero_intel elapsed time 490 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 185 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 491 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 234 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 535 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 533 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 493 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 501 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_faster_intel elapsed time 519 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 502 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 42 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 513 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 554 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 191 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 547 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 537 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile ifi_intel elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 172 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 599 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 465 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 474 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 477 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 531 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 612 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile s2swa_32bit_intel elapsed time 596 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 219 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1006 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 846 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 583 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 669 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 222 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 887 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 225 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 940 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 917 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 576 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 578 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 215 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 863 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile wam_debug_intel elapsed time 167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 464 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile wam_intel elapsed time 461 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -118,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 321.170076 -The maximum resident set size (KB) = 2977016 +The total amount of wall time = 320.318412 +The maximum resident set size (KB) = 2977196 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -189,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 904.207302 -The maximum resident set size (KB) = 1593440 +The total amount of wall time = 904.301031 +The maximum resident set size (KB) = 1598124 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_gfsv17_iau_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -242,14 +243,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK -The total amount of wall time = 966.156495 -The maximum resident set size (KB) = 1713256 +The total amount of wall time = 967.797684 +The maximum resident set size (KB) = 1725560 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_restart_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -302,14 +303,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 448.315294 -The maximum resident set size (KB) = 853232 +The total amount of wall time = 450.269818 +The maximum resident set size (KB) = 850424 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_mpi_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -373,14 +374,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1051.313531 -The maximum resident set size (KB) = 1579820 +The total amount of wall time = 1058.830894 +The maximum resident set size (KB) = 1574172 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_debug_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -432,14 +433,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1415.452708 -The maximum resident set size (KB) = 1604452 +The total amount of wall time = 1418.322768 +The maximum resident set size (KB) = 1601436 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -504,14 +505,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 369.173998 -The maximum resident set size (KB) = 2998816 +The total amount of wall time = 362.583734 +The maximum resident set size (KB) = 3001144 Test 007 cpld_control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -564,14 +565,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 213.988141 -The maximum resident set size (KB) = 3056156 +The total amount of wall time = 213.311337 +The maximum resident set size (KB) = 3059776 Test 008 cpld_restart_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -636,14 +637,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 364.980029 -The maximum resident set size (KB) = 3025704 +The total amount of wall time = 366.537912 +The maximum resident set size (KB) = 3026252 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_restart_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -696,14 +697,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 216.785874 -The maximum resident set size (KB) = 3077272 +The total amount of wall time = 217.290818 +The maximum resident set size (KB) = 3080712 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -756,14 +757,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 329.485081 -The maximum resident set size (KB) = 3311356 +The total amount of wall time = 325.761022 +The maximum resident set size (KB) = 3312300 Test 011 cpld_2threads_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -816,14 +817,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 357.349498 -The maximum resident set size (KB) = 2996912 +The total amount of wall time = 355.722477 +The maximum resident set size (KB) = 2998064 Test 012 cpld_decomp_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_mpi_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -876,14 +877,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 308.870712 -The maximum resident set size (KB) = 2922476 +The total amount of wall time = 301.591247 +The maximum resident set size (KB) = 2926608 Test 013 cpld_mpi_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -948,14 +949,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 362.531272 -The maximum resident set size (KB) = 3000980 +The total amount of wall time = 363.540926 +The maximum resident set size (KB) = 3000524 Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_s2sa_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_s2sa_p8_intel Checking test 015 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1006,14 +1007,14 @@ Checking test 015 cpld_s2sa_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 349.823667 -The maximum resident set size (KB) = 2968436 +The total amount of wall time = 341.660545 +The maximum resident set size (KB) = 2968068 Test 015 cpld_s2sa_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_noaero_p8_intel Checking test 016 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1077,14 +1078,14 @@ Checking test 016 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 267.656703 -The maximum resident set size (KB) = 1592132 +The total amount of wall time = 269.020881 +The maximum resident set size (KB) = 1588492 Test 016 cpld_control_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_nowave_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_nowave_noaero_p8_intel Checking test 017 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1146,14 +1147,14 @@ Checking test 017 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 273.291164 -The maximum resident set size (KB) = 1641304 +The total amount of wall time = 273.924189 +The maximum resident set size (KB) = 1640212 Test 017 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_noaero_p8_agrid_intel Checking test 018 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1215,14 +1216,14 @@ Checking test 018 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 277.076236 -The maximum resident set size (KB) = 1637832 +The total amount of wall time = 277.554247 +The maximum resident set size (KB) = 1640032 Test 018 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_c48_intel Checking test 019 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1272,14 +1273,14 @@ Checking test 019 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 406.163085 -The maximum resident set size (KB) = 2649540 +The total amount of wall time = 405.358854 +The maximum resident set size (KB) = 2664112 Test 019 cpld_control_c48_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_p8_faster_intel Checking test 020 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1344,14 +1345,14 @@ Checking test 020 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 356.469103 -The maximum resident set size (KB) = 3002516 +The total amount of wall time = 357.630870 +The maximum resident set size (KB) = 2999844 Test 020 cpld_control_p8_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_pdlib_p8_intel Checking test 021 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1415,14 +1416,14 @@ Checking test 021 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 921.787541 -The maximum resident set size (KB) = 1608976 +The total amount of wall time = 919.075070 +The maximum resident set size (KB) = 1605928 -Test 021 cpld_control_pdlib_p8_intel PASS Tries: 2 +Test 021 cpld_control_pdlib_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_restart_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_restart_pdlib_p8_intel Checking test 022 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1474,14 +1475,14 @@ Checking test 022 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 455.897460 -The maximum resident set size (KB) = 907476 +The total amount of wall time = 454.259455 +The maximum resident set size (KB) = 906716 Test 022 cpld_restart_pdlib_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_mpi_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_mpi_pdlib_p8_intel Checking test 023 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1545,14 +1546,14 @@ Checking test 023 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1068.666628 -The maximum resident set size (KB) = 1578808 +The total amount of wall time = 1065.406163 +The maximum resident set size (KB) = 1593220 Test 023 cpld_mpi_pdlib_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_debug_pdlib_p8_intel Checking test 024 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1604,14 +1605,14 @@ Checking test 024 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1483.876005 -The maximum resident set size (KB) = 1611048 +The total amount of wall time = 1487.807584 +The maximum resident set size (KB) = 1613300 Test 024 cpld_debug_pdlib_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_flake_intel Checking test 025 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1622,14 +1623,14 @@ Checking test 025 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 212.131404 -The maximum resident set size (KB) = 578716 +The total amount of wall time = 212.780162 +The maximum resident set size (KB) = 583572 Test 025 control_flake_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_CubedSphereGrid_intel Checking test 026 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1656,14 +1657,14 @@ Checking test 026 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.908198 -The maximum resident set size (KB) = 529616 +The total amount of wall time = 131.095295 +The maximum resident set size (KB) = 528760 Test 026 control_CubedSphereGrid_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_CubedSphereGrid_parallel_intel Checking test 027 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1678,14 +1679,14 @@ Checking test 027 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.553258 -The maximum resident set size (KB) = 535980 +The total amount of wall time = 136.186549 +The maximum resident set size (KB) = 532856 Test 027 control_CubedSphereGrid_parallel_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_latlon_intel Checking test 028 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1696,14 +1697,14 @@ Checking test 028 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.557944 -The maximum resident set size (KB) = 530860 +The total amount of wall time = 131.564282 +The maximum resident set size (KB) = 530032 Test 028 control_latlon_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_wrtGauss_netcdf_parallel_intel Checking test 029 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1714,14 +1715,14 @@ Checking test 029 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.772700 -The maximum resident set size (KB) = 531048 +The total amount of wall time = 133.767060 +The maximum resident set size (KB) = 530760 Test 029 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_c48_intel Checking test 030 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1760,14 +1761,14 @@ Checking test 030 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 326.662347 -The maximum resident set size (KB) = 724628 +The total amount of wall time = 326.338413 +The maximum resident set size (KB) = 724984 Test 030 control_c48_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_c192_intel Checking test 031 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1778,14 +1779,14 @@ Checking test 031 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 526.312448 -The maximum resident set size (KB) = 650164 +The total amount of wall time = 525.910476 +The maximum resident set size (KB) = 645512 Test 031 control_c192_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_c384_intel Checking test 032 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1796,14 +1797,14 @@ Checking test 032 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 582.023181 -The maximum resident set size (KB) = 961364 +The total amount of wall time = 585.455960 +The maximum resident set size (KB) = 958932 Test 032 control_c384_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_c384gdas_intel Checking test 033 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1846,14 +1847,14 @@ Checking test 033 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 511.913025 -The maximum resident set size (KB) = 1096508 +The total amount of wall time = 514.080449 +The maximum resident set size (KB) = 1099352 Test 033 control_c384gdas_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_stochy_intel Checking test 034 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1864,28 +1865,28 @@ Checking test 034 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.837019 -The maximum resident set size (KB) = 537192 +The total amount of wall time = 87.826710 +The maximum resident set size (KB) = 534364 Test 034 control_stochy_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_stochy_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_stochy_restart_intel Checking test 035 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.983218 -The maximum resident set size (KB) = 338904 +The total amount of wall time = 49.107201 +The maximum resident set size (KB) = 342464 Test 035 control_stochy_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_lndp_intel Checking test 036 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1896,14 +1897,14 @@ Checking test 036 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.314364 -The maximum resident set size (KB) = 531740 +The total amount of wall time = 82.666921 +The maximum resident set size (KB) = 535384 Test 036 control_lndp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_iovr4_intel Checking test 037 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1918,14 +1919,14 @@ Checking test 037 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.885713 -The maximum resident set size (KB) = 529956 +The total amount of wall time = 132.611001 +The maximum resident set size (KB) = 531452 Test 037 control_iovr4_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_iovr5_intel Checking test 038 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1940,14 +1941,14 @@ Checking test 038 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.336969 -The maximum resident set size (KB) = 527744 +The total amount of wall time = 132.499625 +The maximum resident set size (KB) = 529892 Test 038 control_iovr5_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_intel Checking test 039 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1994,14 +1995,14 @@ Checking test 039 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 161.233438 -The maximum resident set size (KB) = 1509336 +The total amount of wall time = 162.258658 +The maximum resident set size (KB) = 1509936 Test 039 control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_p8_ugwpv1_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_ugwpv1_intel Checking test 040 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2048,14 +2049,14 @@ Checking test 040 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 160.142316 -The maximum resident set size (KB) = 1516344 +The total amount of wall time = 160.062622 +The maximum resident set size (KB) = 1517816 Test 040 control_p8_ugwpv1_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2094,14 +2095,14 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 89.701928 -The maximum resident set size (KB) = 696284 +The total amount of wall time = 88.562698 +The maximum resident set size (KB) = 696912 Test 041 control_restart_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_noqr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_noqr_p8_intel Checking test 042 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2148,14 +2149,14 @@ Checking test 042 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 162.711212 -The maximum resident set size (KB) = 1497120 +The total amount of wall time = 163.088783 +The maximum resident set size (KB) = 1494960 Test 042 control_noqr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_restart_noqr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_restart_noqr_p8_intel Checking test 043 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2194,14 +2195,14 @@ Checking test 043 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 87.485336 -The maximum resident set size (KB) = 705784 +The total amount of wall time = 87.748683 +The maximum resident set size (KB) = 701076 Test 043 control_restart_noqr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2244,14 +2245,14 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 166.782520 -The maximum resident set size (KB) = 1509352 +The total amount of wall time = 166.126433 +The maximum resident set size (KB) = 1504912 Test 044 control_decomp_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2294,14 +2295,14 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 143.310759 -The maximum resident set size (KB) = 1593772 +The total amount of wall time = 142.625057 +The maximum resident set size (KB) = 1601128 Test 045 control_2threads_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2320,14 +2321,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 292.230453 -The maximum resident set size (KB) = 1502744 +The total amount of wall time = 293.042555 +The maximum resident set size (KB) = 1516104 Test 046 control_p8_lndp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2374,14 +2375,14 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 218.004261 -The maximum resident set size (KB) = 1563608 +The total amount of wall time = 217.669024 +The maximum resident set size (KB) = 1564528 Test 047 control_p8_rrtmgp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2428,14 +2429,14 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 165.332173 -The maximum resident set size (KB) = 1514868 +The total amount of wall time = 165.450126 +The maximum resident set size (KB) = 1520132 Test 048 control_p8_mynn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2482,14 +2483,14 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 195.392510 -The maximum resident set size (KB) = 1517112 +The total amount of wall time = 195.793589 +The maximum resident set size (KB) = 1514916 Test 049 merra2_thompson_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2500,28 +2501,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 283.027548 -The maximum resident set size (KB) = 615640 +The total amount of wall time = 285.508638 +The maximum resident set size (KB) = 615916 Test 050 regional_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 150.759236 -The maximum resident set size (KB) = 786348 +The total amount of wall time = 152.310571 +The maximum resident set size (KB) = 786256 Test 051 regional_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_decomp_intel Checking test 052 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2532,14 +2533,14 @@ Checking test 052 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 297.872385 -The maximum resident set size (KB) = 613068 +The total amount of wall time = 299.761045 +The maximum resident set size (KB) = 613420 Test 052 regional_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_2threads_intel Checking test 053 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2550,14 +2551,14 @@ Checking test 053 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 169.454572 -The maximum resident set size (KB) = 672776 +The total amount of wall time = 170.609842 +The maximum resident set size (KB) = 670380 Test 053 regional_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_noquilt_intel Checking test 054 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2565,14 +2566,14 @@ Checking test 054 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 277.712001 -The maximum resident set size (KB) = 1149556 +The total amount of wall time = 280.659718 +The maximum resident set size (KB) = 1154388 Test 054 regional_noquilt_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_2dwrtdecomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_2dwrtdecomp_intel Checking test 055 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2583,14 +2584,14 @@ Checking test 055 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 281.657925 -The maximum resident set size (KB) = 614548 +The total amount of wall time = 282.874043 +The maximum resident set size (KB) = 614396 Test 055 regional_2dwrtdecomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_wofs_intel Checking test 056 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2601,14 +2602,14 @@ Checking test 056 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 370.596469 -The maximum resident set size (KB) = 1587164 +The total amount of wall time = 369.503872 +The maximum resident set size (KB) = 1587348 Test 056 regional_wofs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_ifi_control_intel Checking test 057 regional_ifi_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2619,14 +2620,14 @@ Checking test 057 regional_ifi_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 310.443216 -The maximum resident set size (KB) = 611864 +The total amount of wall time = 313.039247 +The maximum resident set size (KB) = 611364 Test 057 regional_ifi_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_ifi_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_ifi_decomp_intel Checking test 058 regional_ifi_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2637,14 +2638,14 @@ Checking test 058 regional_ifi_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 327.620000 -The maximum resident set size (KB) = 607312 +The total amount of wall time = 330.942547 +The maximum resident set size (KB) = 611812 Test 058 regional_ifi_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_ifi_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_ifi_2threads_intel Checking test 059 regional_ifi_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2655,14 +2656,14 @@ Checking test 059 regional_ifi_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 188.461612 -The maximum resident set size (KB) = 668132 +The total amount of wall time = 192.089542 +The maximum resident set size (KB) = 662932 Test 059 regional_ifi_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2709,14 +2710,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 404.965048 -The maximum resident set size (KB) = 918464 +The total amount of wall time = 404.138886 +The maximum resident set size (KB) = 913248 Test 060 rap_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2727,14 +2728,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 237.155844 -The maximum resident set size (KB) = 1097120 +The total amount of wall time = 236.969637 +The maximum resident set size (KB) = 1097868 Test 061 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2781,14 +2782,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.021619 -The maximum resident set size (KB) = 916044 +The total amount of wall time = 417.512749 +The maximum resident set size (KB) = 917240 Test 062 rap_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2835,14 +2836,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 369.577074 -The maximum resident set size (KB) = 1003372 +The total amount of wall time = 370.005513 +The maximum resident set size (KB) = 1003584 Test 063 rap_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2881,14 +2882,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 207.358177 -The maximum resident set size (KB) = 784896 +The total amount of wall time = 207.777773 +The maximum resident set size (KB) = 784972 Test 064 rap_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2935,14 +2936,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 405.002432 -The maximum resident set size (KB) = 912448 +The total amount of wall time = 403.731072 +The maximum resident set size (KB) = 916120 Test 065 rap_sfcdiff_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_sfcdiff_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2989,14 +2990,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.990235 -The maximum resident set size (KB) = 915980 +The total amount of wall time = 420.257006 +The maximum resident set size (KB) = 911920 Test 066 rap_sfcdiff_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_sfcdiff_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3035,14 +3036,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 301.418488 -The maximum resident set size (KB) = 783740 +The total amount of wall time = 300.958488 +The maximum resident set size (KB) = 787680 Test 067 rap_sfcdiff_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3089,14 +3090,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 205.197327 -The maximum resident set size (KB) = 909024 +The total amount of wall time = 206.763011 +The maximum resident set size (KB) = 914148 Test 068 hrrr_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_control_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_decomp_intel Checking test 069 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3143,14 +3144,14 @@ Checking test 069 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 211.232416 -The maximum resident set size (KB) = 907044 +The total amount of wall time = 210.358713 +The maximum resident set size (KB) = 914940 Test 069 hrrr_control_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_control_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_2threads_intel Checking test 070 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3197,28 +3198,28 @@ Checking test 070 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.274901 -The maximum resident set size (KB) = 982792 +The total amount of wall time = 185.544472 +The maximum resident set size (KB) = 990224 Test 070 hrrr_control_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_control_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_restart_intel Checking test 071 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 108.479349 -The maximum resident set size (KB) = 740220 +The total amount of wall time = 108.796557 +The maximum resident set size (KB) = 740996 Test 071 hrrr_control_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rrfs_v1beta_intel Checking test 072 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3265,14 +3266,14 @@ Checking test 072 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 396.256124 -The maximum resident set size (KB) = 909988 +The total amount of wall time = 396.457124 +The maximum resident set size (KB) = 908644 Test 072 rrfs_v1beta_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rrfs_v1nssl_intel Checking test 073 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3287,14 +3288,14 @@ Checking test 073 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 483.707511 -The maximum resident set size (KB) = 1874372 +The total amount of wall time = 484.141435 +The maximum resident set size (KB) = 1874392 Test 073 rrfs_v1nssl_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rrfs_v1nssl_nohailnoccn_intel Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3309,14 +3310,14 @@ Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 469.355849 -The maximum resident set size (KB) = 1861284 +The total amount of wall time = 467.963671 +The maximum resident set size (KB) = 1859952 Test 074 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_csawmg_intel Checking test 075 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3327,14 +3328,14 @@ Checking test 075 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 335.356824 -The maximum resident set size (KB) = 607084 +The total amount of wall time = 337.030978 +The maximum resident set size (KB) = 605044 Test 075 control_csawmg_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_csawmgt_intel Checking test 076 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3345,26 +3346,26 @@ Checking test 076 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 332.641577 -The maximum resident set size (KB) = 602564 +The total amount of wall time = 331.569254 +The maximum resident set size (KB) = 602236 Test 076 control_csawmgt_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_wam_intel Checking test 077 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.046599 -The maximum resident set size (KB) = 275612 +The total amount of wall time = 118.845555 +The maximum resident set size (KB) = 275816 Test 077 control_wam_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_faster_intel Checking test 078 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3411,14 +3412,14 @@ Checking test 078 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 155.185621 -The maximum resident set size (KB) = 1509172 +The total amount of wall time = 154.988896 +The maximum resident set size (KB) = 1513516 Test 078 control_p8_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_control_faster_intel Checking test 079 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3429,14 +3430,14 @@ Checking test 079 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 273.308295 -The maximum resident set size (KB) = 606552 +The total amount of wall time = 270.119822 +The maximum resident set size (KB) = 608720 Test 079 regional_control_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_CubedSphereGrid_debug_intel Checking test 080 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3463,364 +3464,364 @@ Checking test 080 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.357938 -The maximum resident set size (KB) = 689028 +The total amount of wall time = 158.922650 +The maximum resident set size (KB) = 689640 Test 080 control_CubedSphereGrid_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_wrtGauss_netcdf_parallel_debug_intel Checking test 081 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 157.712797 -The maximum resident set size (KB) = 689412 +The total amount of wall time = 157.655288 +The maximum resident set size (KB) = 692700 Test 081 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_stochy_debug_intel Checking test 082 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.244526 -The maximum resident set size (KB) = 690932 +The total amount of wall time = 179.781081 +The maximum resident set size (KB) = 695120 Test 082 control_stochy_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_lndp_debug_intel Checking test 083 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.981064 -The maximum resident set size (KB) = 694068 +The total amount of wall time = 161.216264 +The maximum resident set size (KB) = 693880 Test 083 control_lndp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_csawmg_debug_intel Checking test 084 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 251.987189 -The maximum resident set size (KB) = 729460 +The total amount of wall time = 251.253070 +The maximum resident set size (KB) = 731792 Test 084 control_csawmg_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_csawmgt_debug_intel Checking test 085 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 248.724426 -The maximum resident set size (KB) = 730320 +The total amount of wall time = 246.667985 +The maximum resident set size (KB) = 734932 Test 085 control_csawmgt_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_ras_debug_intel Checking test 086 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.716155 -The maximum resident set size (KB) = 703072 +The total amount of wall time = 161.945652 +The maximum resident set size (KB) = 705816 Test 086 control_ras_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_diag_debug_intel Checking test 087 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.306363 -The maximum resident set size (KB) = 748724 +The total amount of wall time = 163.146433 +The maximum resident set size (KB) = 746532 Test 087 control_diag_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_debug_p8_intel Checking test 088 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.609668 -The maximum resident set size (KB) = 1522068 +The total amount of wall time = 164.858925 +The maximum resident set size (KB) = 1518788 Test 088 control_debug_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_debug_intel Checking test 089 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1057.241772 -The maximum resident set size (KB) = 633208 +The total amount of wall time = 1056.164286 +The maximum resident set size (KB) = 633436 Test 089 regional_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_control_debug_intel Checking test 090 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.761979 -The maximum resident set size (KB) = 1076580 +The total amount of wall time = 298.696433 +The maximum resident set size (KB) = 1078408 Test 090 rap_control_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_debug_intel Checking test 091 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.652718 -The maximum resident set size (KB) = 1070432 +The total amount of wall time = 292.066615 +The maximum resident set size (KB) = 1075824 Test 091 hrrr_control_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_gf_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_gf_debug_intel Checking test 092 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.896341 -The maximum resident set size (KB) = 1078668 +The total amount of wall time = 296.503922 +The maximum resident set size (KB) = 1073860 Test 092 hrrr_gf_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_c3_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_c3_debug_intel Checking test 093 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.835753 -The maximum resident set size (KB) = 1070676 +The total amount of wall time = 298.989046 +The maximum resident set size (KB) = 1071112 Test 093 hrrr_c3_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_unified_drag_suite_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_unified_drag_suite_debug_intel Checking test 094 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.778895 -The maximum resident set size (KB) = 1074164 +The total amount of wall time = 299.690383 +The maximum resident set size (KB) = 1075004 Test 094 rap_unified_drag_suite_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_diag_debug_intel Checking test 095 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.766988 -The maximum resident set size (KB) = 1161928 +The total amount of wall time = 309.588087 +The maximum resident set size (KB) = 1162372 Test 095 rap_diag_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_cires_ugwp_debug_intel Checking test 096 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.101560 -The maximum resident set size (KB) = 1077936 +The total amount of wall time = 306.008528 +The maximum resident set size (KB) = 1077276 Test 096 rap_cires_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_unified_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_unified_ugwp_debug_intel Checking test 097 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.319251 -The maximum resident set size (KB) = 1077092 +The total amount of wall time = 305.047713 +The maximum resident set size (KB) = 1075408 Test 097 rap_unified_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_lndp_debug_intel Checking test 098 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.981168 -The maximum resident set size (KB) = 1079416 +The total amount of wall time = 300.973018 +The maximum resident set size (KB) = 1080452 Test 098 rap_lndp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_progcld_thompson_debug_intel Checking test 099 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.113532 -The maximum resident set size (KB) = 1080896 +The total amount of wall time = 297.370856 +The maximum resident set size (KB) = 1075492 Test 099 rap_progcld_thompson_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_noah_debug_intel Checking test 100 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.768223 -The maximum resident set size (KB) = 1070492 +The total amount of wall time = 293.185607 +The maximum resident set size (KB) = 1077912 Test 100 rap_noah_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_sfcdiff_debug_intel Checking test 101 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.306088 -The maximum resident set size (KB) = 1073208 +The total amount of wall time = 298.663941 +The maximum resident set size (KB) = 1079072 Test 101 rap_sfcdiff_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 489.740452 -The maximum resident set size (KB) = 1075852 +The total amount of wall time = 489.704928 +The maximum resident set size (KB) = 1069828 Test 102 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rrfs_v1beta_debug_intel Checking test 103 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.039267 -The maximum resident set size (KB) = 1073960 +The total amount of wall time = 293.609134 +The maximum resident set size (KB) = 1074308 Test 103 rrfs_v1beta_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_clm_lake_debug_intel Checking test 104 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 348.521555 -The maximum resident set size (KB) = 1075084 +The total amount of wall time = 349.089494 +The maximum resident set size (KB) = 1076264 Test 104 rap_clm_lake_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_flake_debug_intel Checking test 105 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.548271 -The maximum resident set size (KB) = 1078272 +The total amount of wall time = 301.022918 +The maximum resident set size (KB) = 1078428 Test 105 rap_flake_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/gnv1_c96_no_nest_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/gnv1_c96_no_nest_debug_intel Checking test 106 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3861,26 +3862,26 @@ Checking test 106 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 521.872841 -The maximum resident set size (KB) = 1079484 +The total amount of wall time = 522.932010 +The maximum resident set size (KB) = 1080516 Test 106 gnv1_c96_no_nest_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_wam_debug_intel Checking test 107 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 297.557094 -The maximum resident set size (KB) = 300208 +The total amount of wall time = 298.766467 +The maximum resident set size (KB) = 300764 Test 107 control_wam_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3891,14 +3892,14 @@ Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 225.561684 -The maximum resident set size (KB) = 961176 +The total amount of wall time = 225.467797 +The maximum resident set size (KB) = 959480 Test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_control_dyn32_phy32_intel Checking test 109 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3945,14 +3946,14 @@ Checking test 109 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 333.347646 -The maximum resident set size (KB) = 796128 +The total amount of wall time = 334.325928 +The maximum resident set size (KB) = 796248 Test 109 rap_control_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_dyn32_phy32_intel Checking test 110 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3999,14 +4000,14 @@ Checking test 110 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 176.057311 -The maximum resident set size (KB) = 789412 +The total amount of wall time = 175.538101 +The maximum resident set size (KB) = 789924 Test 110 hrrr_control_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_2threads_dyn32_phy32_intel Checking test 111 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4053,14 +4054,14 @@ Checking test 111 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 306.579035 -The maximum resident set size (KB) = 856636 +The total amount of wall time = 305.704982 +The maximum resident set size (KB) = 859796 Test 111 rap_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_2threads_dyn32_phy32_intel Checking test 112 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4107,14 +4108,14 @@ Checking test 112 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 160.534668 -The maximum resident set size (KB) = 845824 +The total amount of wall time = 159.416675 +The maximum resident set size (KB) = 844788 Test 112 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_decomp_dyn32_phy32_intel Checking test 113 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4161,14 +4162,14 @@ Checking test 113 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.870793 -The maximum resident set size (KB) = 791816 +The total amount of wall time = 183.418929 +The maximum resident set size (KB) = 790492 Test 113 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_restart_dyn32_phy32_intel Checking test 114 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4207,28 +4208,28 @@ Checking test 114 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 249.013015 -The maximum resident set size (KB) = 693064 +The total amount of wall time = 249.760111 +The maximum resident set size (KB) = 692108 Test 114 rap_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_control_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_restart_dyn32_phy32_intel Checking test 115 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 92.652160 -The maximum resident set size (KB) = 675256 +The total amount of wall time = 92.537859 +The maximum resident set size (KB) = 675180 Test 115 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/conus13km_control_intel Checking test 116 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4244,40 +4245,40 @@ Checking test 116 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 115.248385 -The maximum resident set size (KB) = 1004096 +The total amount of wall time = 116.008762 +The maximum resident set size (KB) = 1005140 Test 116 conus13km_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/conus13km_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/conus13km_2threads_intel Checking test 117 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 59.399942 -The maximum resident set size (KB) = 1008768 +The total amount of wall time = 56.438153 +The maximum resident set size (KB) = 1009568 Test 117 conus13km_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/conus13km_restart_mismatch_intel Checking test 118 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 71.225366 -The maximum resident set size (KB) = 886484 +The total amount of wall time = 68.462995 +The maximum resident set size (KB) = 882312 Test 118 conus13km_restart_mismatch_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_control_dyn64_phy32_intel Checking test 119 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4324,42 +4325,42 @@ Checking test 119 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 229.204271 -The maximum resident set size (KB) = 819504 +The total amount of wall time = 228.709562 +The maximum resident set size (KB) = 819984 Test 119 rap_control_dyn64_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_control_debug_dyn32_phy32_intel Checking test 120 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.635758 -The maximum resident set size (KB) = 950976 +The total amount of wall time = 292.419514 +The maximum resident set size (KB) = 957304 Test 120 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_debug_dyn32_phy32_intel Checking test 121 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 286.199362 -The maximum resident set size (KB) = 950504 +The total amount of wall time = 285.431568 +The maximum resident set size (KB) = 954288 Test 121 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/conus13km_debug_intel Checking test 122 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4373,14 +4374,14 @@ Checking test 122 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 884.158383 -The maximum resident set size (KB) = 1039196 +The total amount of wall time = 887.234514 +The maximum resident set size (KB) = 1038840 Test 122 conus13km_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/conus13km_debug_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/conus13km_debug_qr_intel Checking test 123 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4394,81 +4395,81 @@ Checking test 123 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 890.295413 -The maximum resident set size (KB) = 708828 +The total amount of wall time = 893.774263 +The maximum resident set size (KB) = 708708 Test 123 conus13km_debug_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/conus13km_debug_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/conus13km_debug_2threads_intel Checking test 124 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 505.433554 -The maximum resident set size (KB) = 1038596 +The total amount of wall time = 505.890413 +The maximum resident set size (KB) = 1042936 Test 124 conus13km_debug_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/conus13km_radar_tten_debug_intel Checking test 125 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 884.058645 -The maximum resident set size (KB) = 1108640 +The total amount of wall time = 889.920924 +The maximum resident set size (KB) = 1105268 Test 125 conus13km_radar_tten_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_control_dyn64_phy32_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_control_dyn64_phy32_debug_intel Checking test 126 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.288640 -The maximum resident set size (KB) = 973472 +The total amount of wall time = 296.755630 +The maximum resident set size (KB) = 974180 Test 126 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_atm_intel Checking test 127 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 344.391867 -The maximum resident set size (KB) = 621500 +The total amount of wall time = 342.919889 +The maximum resident set size (KB) = 622156 Test 127 hafs_regional_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_atm_thompson_gfdlsf_intel Checking test 128 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 308.111592 -The maximum resident set size (KB) = 969060 +The total amount of wall time = 312.742571 +The maximum resident set size (KB) = 965900 Test 128 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_atm_ocn_intel Checking test 129 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4477,14 +4478,14 @@ Checking test 129 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 420.816627 -The maximum resident set size (KB) = 663564 +The total amount of wall time = 422.200657 +The maximum resident set size (KB) = 666244 Test 129 hafs_regional_atm_ocn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_atm_wav_intel Checking test 130 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4493,14 +4494,14 @@ Checking test 130 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 739.799198 -The maximum resident set size (KB) = 688968 +The total amount of wall time = 749.518806 +The maximum resident set size (KB) = 692064 Test 130 hafs_regional_atm_wav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_atm_ocn_wav_intel Checking test 131 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4511,14 +4512,14 @@ Checking test 131 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 930.582940 -The maximum resident set size (KB) = 705176 +The total amount of wall time = 937.087321 +The maximum resident set size (KB) = 708020 Test 131 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_1nest_atm_intel Checking test 132 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4540,14 +4541,14 @@ Checking test 132 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 318.310110 -The maximum resident set size (KB) = 389660 +The total amount of wall time = 314.768684 +The maximum resident set size (KB) = 390416 Test 132 hafs_regional_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_telescopic_2nests_atm_intel Checking test 133 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4556,14 +4557,14 @@ Checking test 133 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 402.370529 -The maximum resident set size (KB) = 410104 +The total amount of wall time = 403.065815 +The maximum resident set size (KB) = 412916 Test 133 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_global_1nest_atm_intel Checking test 134 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4610,14 +4611,14 @@ Checking test 134 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 169.670882 -The maximum resident set size (KB) = 286088 +The total amount of wall time = 169.616739 +The maximum resident set size (KB) = 285644 Test 134 hafs_global_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_global_multiple_4nests_atm_intel Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4699,14 +4700,14 @@ Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 481.952906 -The maximum resident set size (KB) = 372036 +The total amount of wall time = 482.605167 +The maximum resident set size (KB) = 371928 Test 135 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_specified_moving_1nest_atm_intel Checking test 136 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4715,14 +4716,14 @@ Checking test 136 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 218.453061 -The maximum resident set size (KB) = 414896 +The total amount of wall time = 217.568480 +The maximum resident set size (KB) = 417700 Test 136 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_storm_following_1nest_atm_intel Checking test 137 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4744,14 +4745,14 @@ Checking test 137 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 205.216951 -The maximum resident set size (KB) = 418740 +The total amount of wall time = 204.435913 +The maximum resident set size (KB) = 417832 Test 137 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4760,28 +4761,28 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 261.766887 -The maximum resident set size (KB) = 493272 +The total amount of wall time = 261.272901 +The maximum resident set size (KB) = 497452 Test 138 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_global_storm_following_1nest_atm_intel Checking test 139 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 90.340965 -The maximum resident set size (KB) = 315792 +The total amount of wall time = 90.948722 +The maximum resident set size (KB) = 319568 Test 139 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/gnv1_nested_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/gnv1_nested_intel Checking test 140 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4828,28 +4829,28 @@ Checking test 140 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 237.634690 -The maximum resident set size (KB) = 682080 +The total amount of wall time = 238.829676 +The maximum resident set size (KB) = 680964 Test 140 gnv1_nested_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 814.122427 -The maximum resident set size (KB) = 510264 +The total amount of wall time = 824.372311 +The maximum resident set size (KB) = 506752 Test 141 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4860,162 +4861,197 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 514.162775 -The maximum resident set size (KB) = 529708 +The total amount of wall time = 515.534337 +The maximum resident set size (KB) = 530108 Test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + +The total amount of wall time = 521.697420 +The maximum resident set size (KB) = 715464 + +Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK + +The total amount of wall time = 388.309954 +The maximum resident set size (KB) = 722468 + +Test 144 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS + + baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_docn_intel -Checking test 143 hafs_regional_docn_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_docn_intel +Checking test 145 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 392.901344 -The maximum resident set size (KB) = 653592 +The total amount of wall time = 392.037411 +The maximum resident set size (KB) = 655452 -Test 143 hafs_regional_docn_intel PASS +Test 145 hafs_regional_docn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_docn_oisst_intel -Checking test 144 hafs_regional_docn_oisst_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_docn_oisst_intel +Checking test 146 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 393.592845 -The maximum resident set size (KB) = 638316 +The total amount of wall time = 392.429768 +The maximum resident set size (KB) = 637520 -Test 144 hafs_regional_docn_oisst_intel PASS +Test 146 hafs_regional_docn_oisst_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_datm_cdeps_intel -Checking test 145 hafs_regional_datm_cdeps_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_datm_cdeps_intel +Checking test 147 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 944.427986 -The maximum resident set size (KB) = 882792 +The total amount of wall time = 946.424113 +The maximum resident set size (KB) = 883368 -Test 145 hafs_regional_datm_cdeps_intel PASS +Test 147 hafs_regional_datm_cdeps_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_control_cfsr_intel -Checking test 146 datm_cdeps_control_cfsr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_control_cfsr_intel +Checking test 148 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.993265 -The maximum resident set size (KB) = 742780 +The total amount of wall time = 143.647063 +The maximum resident set size (KB) = 750008 -Test 146 datm_cdeps_control_cfsr_intel PASS +Test 148 datm_cdeps_control_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_restart_cfsr_intel -Checking test 147 datm_cdeps_restart_cfsr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_restart_cfsr_intel +Checking test 149 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.778765 -The maximum resident set size (KB) = 733840 +The total amount of wall time = 85.684300 +The maximum resident set size (KB) = 736608 -Test 147 datm_cdeps_restart_cfsr_intel PASS +Test 149 datm_cdeps_restart_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_control_gefs_intel -Checking test 148 datm_cdeps_control_gefs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_control_gefs_intel +Checking test 150 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.281913 -The maximum resident set size (KB) = 623416 +The total amount of wall time = 134.070231 +The maximum resident set size (KB) = 632468 -Test 148 datm_cdeps_control_gefs_intel PASS +Test 150 datm_cdeps_control_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_iau_gefs_intel -Checking test 149 datm_cdeps_iau_gefs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_iau_gefs_intel +Checking test 151 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.259908 -The maximum resident set size (KB) = 629660 +The total amount of wall time = 136.412933 +The maximum resident set size (KB) = 628616 -Test 149 datm_cdeps_iau_gefs_intel PASS +Test 151 datm_cdeps_iau_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_stochy_gefs_intel -Checking test 150 datm_cdeps_stochy_gefs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_stochy_gefs_intel +Checking test 152 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.210904 -The maximum resident set size (KB) = 627000 +The total amount of wall time = 137.444412 +The maximum resident set size (KB) = 629604 -Test 150 datm_cdeps_stochy_gefs_intel PASS +Test 152 datm_cdeps_stochy_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_ciceC_cfsr_intel -Checking test 151 datm_cdeps_ciceC_cfsr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_ciceC_cfsr_intel +Checking test 153 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.209791 -The maximum resident set size (KB) = 744560 +The total amount of wall time = 142.988660 +The maximum resident set size (KB) = 752280 -Test 151 datm_cdeps_ciceC_cfsr_intel PASS +Test 153 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_bulk_cfsr_intel -Checking test 152 datm_cdeps_bulk_cfsr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_bulk_cfsr_intel +Checking test 154 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.857840 -The maximum resident set size (KB) = 746768 +The total amount of wall time = 142.718230 +The maximum resident set size (KB) = 735732 -Test 152 datm_cdeps_bulk_cfsr_intel PASS +Test 154 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_bulk_gefs_intel -Checking test 153 datm_cdeps_bulk_gefs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_bulk_gefs_intel +Checking test 155 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.345560 -The maximum resident set size (KB) = 625856 +The total amount of wall time = 134.507638 +The maximum resident set size (KB) = 629500 -Test 153 datm_cdeps_bulk_gefs_intel PASS +Test 155 datm_cdeps_bulk_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_mx025_cfsr_intel -Checking test 154 datm_cdeps_mx025_cfsr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_mx025_cfsr_intel +Checking test 156 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5023,15 +5059,15 @@ Checking test 154 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 338.715664 -The maximum resident set size (KB) = 592136 +The total amount of wall time = 339.143906 +The maximum resident set size (KB) = 597496 -Test 154 datm_cdeps_mx025_cfsr_intel PASS +Test 156 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_mx025_gefs_intel -Checking test 155 datm_cdeps_mx025_gefs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_mx025_gefs_intel +Checking test 157 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5039,65 +5075,65 @@ Checking test 155 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 335.544603 -The maximum resident set size (KB) = 573380 +The total amount of wall time = 337.336971 +The maximum resident set size (KB) = 581108 -Test 155 datm_cdeps_mx025_gefs_intel PASS +Test 157 datm_cdeps_mx025_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_multiple_files_cfsr_intel -Checking test 156 datm_cdeps_multiple_files_cfsr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_multiple_files_cfsr_intel +Checking test 158 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.857516 -The maximum resident set size (KB) = 745432 +The total amount of wall time = 142.808706 +The maximum resident set size (KB) = 750892 -Test 156 datm_cdeps_multiple_files_cfsr_intel PASS +Test 158 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_3072x1536_cfsr_intel -Checking test 157 datm_cdeps_3072x1536_cfsr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_3072x1536_cfsr_intel +Checking test 159 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 260.146582 -The maximum resident set size (KB) = 1991952 +The total amount of wall time = 261.856127 +The maximum resident set size (KB) = 2005288 -Test 157 datm_cdeps_3072x1536_cfsr_intel PASS +Test 159 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_gfs_intel -Checking test 158 datm_cdeps_gfs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_gfs_intel +Checking test 160 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 260.061706 -The maximum resident set size (KB) = 1992332 +The total amount of wall time = 260.653816 +The maximum resident set size (KB) = 2005220 -Test 158 datm_cdeps_gfs_intel PASS +Test 160 datm_cdeps_gfs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_control_cfsr_faster_intel -Checking test 159 datm_cdeps_control_cfsr_faster_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_control_cfsr_faster_intel +Checking test 161 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.161305 -The maximum resident set size (KB) = 730084 +The total amount of wall time = 142.540144 +The maximum resident set size (KB) = 751576 -Test 159 datm_cdeps_control_cfsr_faster_intel PASS +Test 161 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_lnd_gswp3_intel -Checking test 160 datm_cdeps_lnd_gswp3_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_lnd_gswp3_intel +Checking test 162 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5105,15 +5141,15 @@ Checking test 160 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 58.080019 -The maximum resident set size (KB) = 217652 +The total amount of wall time = 59.598464 +The maximum resident set size (KB) = 219744 -Test 160 datm_cdeps_lnd_gswp3_intel PASS +Test 162 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_lnd_era5_intel -Checking test 161 datm_cdeps_lnd_era5_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_lnd_era5_intel +Checking test 163 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5121,15 +5157,15 @@ Checking test 161 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 57.702964 -The maximum resident set size (KB) = 369952 +The total amount of wall time = 60.516957 +The maximum resident set size (KB) = 369164 -Test 161 datm_cdeps_lnd_era5_intel PASS +Test 163 datm_cdeps_lnd_era5_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_lnd_era5_rst_intel -Checking test 162 datm_cdeps_lnd_era5_rst_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_lnd_era5_rst_intel +Checking test 164 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5137,15 +5173,15 @@ Checking test 162 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 41.180731 -The maximum resident set size (KB) = 372808 +The total amount of wall time = 41.176466 +The maximum resident set size (KB) = 367880 -Test 162 datm_cdeps_lnd_era5_rst_intel PASS +Test 164 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_p8_atmlnd_sbs_intel -Checking test 163 control_p8_atmlnd_sbs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_atmlnd_sbs_intel +Checking test 165 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5233,15 +5269,15 @@ Checking test 163 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 271.325422 -The maximum resident set size (KB) = 1548660 +The total amount of wall time = 272.686960 +The maximum resident set size (KB) = 1547448 -Test 163 control_p8_atmlnd_sbs_intel PASS +Test 165 control_p8_atmlnd_sbs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_p8_atmlnd_intel -Checking test 164 control_p8_atmlnd_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_atmlnd_intel +Checking test 166 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5329,15 +5365,15 @@ Checking test 164 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 273.496739 -The maximum resident set size (KB) = 1550516 +The total amount of wall time = 272.289955 +The maximum resident set size (KB) = 1546428 -Test 164 control_p8_atmlnd_intel PASS +Test 166 control_p8_atmlnd_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_restart_p8_atmlnd_intel -Checking test 165 control_restart_p8_atmlnd_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_restart_p8_atmlnd_intel +Checking test 167 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5357,15 +5393,15 @@ Checking test 165 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 154.696677 -The maximum resident set size (KB) = 748512 +The total amount of wall time = 154.294531 +The maximum resident set size (KB) = 747308 -Test 165 control_restart_p8_atmlnd_intel PASS +Test 167 control_restart_p8_atmlnd_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/atmwav_control_noaero_p8_intel -Checking test 166 atmwav_control_noaero_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/atmwav_control_noaero_p8_intel +Checking test 168 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5407,15 +5443,15 @@ Checking test 166 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 99.619220 -The maximum resident set size (KB) = 1551504 +The total amount of wall time = 99.131553 +The maximum resident set size (KB) = 1545812 -Test 166 atmwav_control_noaero_p8_intel PASS +Test 168 atmwav_control_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_atmwav_intel -Checking test 167 control_atmwav_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_atmwav_intel +Checking test 169 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5458,15 +5494,15 @@ Checking test 167 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 89.793583 -The maximum resident set size (KB) = 543640 +The total amount of wall time = 90.660176 +The maximum resident set size (KB) = 544380 -Test 167 control_atmwav_intel PASS +Test 169 control_atmwav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/atmaero_control_p8_intel -Checking test 168 atmaero_control_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/atmaero_control_p8_intel +Checking test 170 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5509,15 +5545,15 @@ Checking test 168 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 236.197295 -The maximum resident set size (KB) = 2854332 +The total amount of wall time = 236.744608 +The maximum resident set size (KB) = 2850920 -Test 168 atmaero_control_p8_intel PASS +Test 170 atmaero_control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/atmaero_control_p8_rad_intel -Checking test 169 atmaero_control_p8_rad_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/atmaero_control_p8_rad_intel +Checking test 171 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5560,15 +5596,15 @@ Checking test 169 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 275.374737 -The maximum resident set size (KB) = 2911572 +The total amount of wall time = 274.998914 +The maximum resident set size (KB) = 2913224 -Test 169 atmaero_control_p8_rad_intel PASS +Test 171 atmaero_control_p8_rad_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/atmaero_control_p8_rad_micro_intel -Checking test 170 atmaero_control_p8_rad_micro_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/atmaero_control_p8_rad_micro_intel +Checking test 172 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5611,15 +5647,15 @@ Checking test 170 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 289.818988 -The maximum resident set size (KB) = 2926764 +The total amount of wall time = 289.954693 +The maximum resident set size (KB) = 2926824 -Test 170 atmaero_control_p8_rad_micro_intel PASS +Test 172 atmaero_control_p8_rad_micro_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_atmaq_debug_intel -Checking test 171 regional_atmaq_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_atmaq_debug_intel +Checking test 173 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5632,10 +5668,12 @@ Checking test 171 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1310.462187 -The maximum resident set size (KB) = 4428796 +The total amount of wall time = 1304.424649 +The maximum resident set size (KB) = 4422396 -Test 171 regional_atmaq_debug_intel PASS +Test 173 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL +Fri Feb 2 17:01:10 UTC 2024 +Elapsed time: 02h:08m:07s. Have a nice day! From 3bb3e9e5c9af507df7c77840d1dd37dba55ed331 Mon Sep 17 00:00:00 2001 From: FernandoAndrade-NOAA Date: Sun, 4 Feb 2024 22:18:16 +0000 Subject: [PATCH 57/63] add hera RT log passed --- tests/logs/RegressionTests_hera.log | 1637 +++++++++++++-------------- 1 file changed, 816 insertions(+), 821 deletions(-) diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 831f02b4a3..3fbaddcdb3 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,76 +1,76 @@ -Thu Feb 1 18:31:54 UTC 2024 +Fri Feb 2 16:28:24 UTC 2024 Start Regression test -Testing UFSWM Hash: f4812a3d717eb939d9b701765d0b2b830e0e3b23 +Testing UFSWM Hash: e41408ae592aa1e3fe586ab058b5320cd96afda6 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 7e0908cb958fc36002225efe00a3181f24c41c7a CMEPS-interface/CMEPS (cmeps0.14.51) + eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - ef04de2c2a2109dbe2cc6992f6658b7af2875002 FV3 (heads/develop) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 585 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 214 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 552 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 265 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 196 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 596 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_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 215 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 593 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 204 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 202 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 307 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 551 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 648 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 582 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 584 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 528 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 175 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 369 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 813 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 371 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 66 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 610 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 627 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 220 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 603 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 622 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 190 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 655 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 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 192 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 536 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 559 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 592 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 831 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 598 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 683 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 249 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 933 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 143 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 247 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 965 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 844 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 686 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 231 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 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 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 822 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 920 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 99 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 508 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn64_phy32_debug_gnu elapsed time 219 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 308 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 592 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 217 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 565 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 212 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 541 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 630 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 560 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 563 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 537 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 188 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 354 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 795 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 376 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 60 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 584 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 636 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 222 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 614 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 617 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 660 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 208 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 524 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 194 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_gnu elapsed time 220 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 561 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 612 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 594 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 240 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 655 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 131 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 238 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 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 917 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 696 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 265 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 942 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 151 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 265 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 971 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 840 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 696 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 111 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 177 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 512 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/Bin.Li/FV3_RT/rt_18528/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 304.478273 - 0: The maximum resident set size (KB) = 3151400 + 0: The total amount of wall time = 300.968010 + 0: The maximum resident set size (KB) = 3175484 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/Bin.Li/FV3_RT/rt_18528/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 955.383746 - 0: The maximum resident set size (KB) = 1724460 + 0: The total amount of wall time = 957.549644 + 0: The maximum resident set size (KB) = 1734260 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/Bin.Li/FV3_RT/rt_18528/cpld_control_gfsv17_iau_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -259,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1006.711816 - 0: The maximum resident set size (KB) = 2015396 + 0: The total amount of wall time = 999.394731 + 0: The maximum resident set size (KB) = 2015292 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/Bin.Li/FV3_RT/rt_18528/cpld_restart_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -319,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 449.441866 - 0: The maximum resident set size (KB) = 1106552 + 0: The total amount of wall time = 446.132047 + 0: The maximum resident set size (KB) = 1103900 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/Bin.Li/FV3_RT/rt_18528/cpld_mpi_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -390,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1081.749945 - 0: The maximum resident set size (KB) = 1598672 + 0: The total amount of wall time = 1080.360018 + 0: The maximum resident set size (KB) = 1623136 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/Bin.Li/FV3_RT/rt_18528/cpld_debug_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -449,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1350.587612 - 0: The maximum resident set size (KB) = 1667436 + 0: The total amount of wall time = 1341.153523 + 0: The maximum resident set size (KB) = 1670484 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/Bin.Li/FV3_RT/rt_18528/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -521,14 +521,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 328.452046 - 0: The maximum resident set size (KB) = 3202552 + 0: The total amount of wall time = 328.349038 + 0: The maximum resident set size (KB) = 3178032 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/Bin.Li/FV3_RT/rt_18528/cpld_restart_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -581,14 +581,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 184.651853 - 0: The maximum resident set size (KB) = 3239304 + 0: The total amount of wall time = 187.053517 + 0: The maximum resident set size (KB) = 3242380 Test 008 cpld_restart_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -653,14 +653,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 323.480778 - 0: The maximum resident set size (KB) = 3233788 + 0: The total amount of wall time = 329.572558 + 0: The maximum resident set size (KB) = 3204532 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_restart_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -713,14 +713,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 189.129710 - 0: The maximum resident set size (KB) = 3270184 + 0: The total amount of wall time = 188.295616 + 0: The maximum resident set size (KB) = 3254952 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_2threads_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -773,14 +773,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 312.253817 - 0: The maximum resident set size (KB) = 3541004 + 0: The total amount of wall time = 311.422387 + 0: The maximum resident set size (KB) = 3552108 Test 011 cpld_2threads_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_decomp_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -833,14 +833,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 329.107695 - 0: The maximum resident set size (KB) = 3171992 + 0: The total amount of wall time = 327.807304 + 0: The maximum resident set size (KB) = 3170288 Test 012 cpld_decomp_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_mpi_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -893,14 +893,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 269.948939 - 0: The maximum resident set size (KB) = 3053164 + 0: The total amount of wall time = 267.783856 + 0: The maximum resident set size (KB) = 3059240 Test 013 cpld_mpi_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -965,14 +965,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 333.737242 - 0: The maximum resident set size (KB) = 3181004 + 0: The total amount of wall time = 327.978481 + 0: The maximum resident set size (KB) = 3177632 Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_c192_p8_intel Checking test 015 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1025,14 +1025,14 @@ Checking test 015 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 574.672854 - 0: The maximum resident set size (KB) = 3322368 + 0: The total amount of wall time = 563.569574 + 0: The maximum resident set size (KB) = 3318392 Test 015 cpld_control_c192_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_restart_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_restart_c192_p8_intel Checking test 016 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1085,14 +1085,14 @@ Checking test 016 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 372.734067 - 0: The maximum resident set size (KB) = 3609644 + 0: The total amount of wall time = 348.590941 + 0: The maximum resident set size (KB) = 3605228 Test 016 cpld_restart_c192_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_bmark_p8_intel Checking test 017 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1140,14 +1140,14 @@ Checking test 017 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 568.943073 - 0: The maximum resident set size (KB) = 4103344 + 0: The total amount of wall time = 556.162705 + 0: The maximum resident set size (KB) = 4114952 Test 017 cpld_bmark_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_restart_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_restart_bmark_p8_intel Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1195,14 +1195,14 @@ Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 376.018274 - 0: The maximum resident set size (KB) = 4340460 + 0: The total amount of wall time = 369.346999 + 0: The maximum resident set size (KB) = 4344988 Test 018 cpld_restart_bmark_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_s2sa_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_s2sa_p8_intel Checking test 019 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1253,14 +1253,14 @@ Checking test 019 cpld_s2sa_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 308.130936 - 0: The maximum resident set size (KB) = 3164368 + 0: The total amount of wall time = 307.567151 + 0: The maximum resident set size (KB) = 3151528 Test 019 cpld_s2sa_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_noaero_p8_intel Checking test 020 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1324,14 +1324,14 @@ Checking test 020 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 261.214330 - 0: The maximum resident set size (KB) = 1714788 + 0: The total amount of wall time = 258.395007 + 0: The maximum resident set size (KB) = 1719516 Test 020 cpld_control_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_nowave_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_nowave_noaero_p8_intel Checking test 021 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1393,14 +1393,14 @@ Checking test 021 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 250.438936 - 0: The maximum resident set size (KB) = 1765004 + 0: The total amount of wall time = 253.923742 + 0: The maximum resident set size (KB) = 1768800 Test 021 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_debug_p8_intel Checking test 022 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1453,14 +1453,14 @@ Checking test 022 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 474.921413 - 0: The maximum resident set size (KB) = 3229608 + 0: The total amount of wall time = 476.470976 + 0: The maximum resident set size (KB) = 3181428 Test 022 cpld_debug_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_debug_noaero_p8_intel Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1512,14 +1512,14 @@ Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 319.537908 - 0: The maximum resident set size (KB) = 1751152 + 0: The total amount of wall time = 324.380102 + 0: The maximum resident set size (KB) = 1722716 Test 023 cpld_debug_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_noaero_p8_agrid_intel Checking test 024 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1581,14 +1581,14 @@ Checking test 024 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 253.216018 - 0: The maximum resident set size (KB) = 1748832 + 0: The total amount of wall time = 253.648624 + 0: The maximum resident set size (KB) = 1752216 Test 024 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_c48_intel Checking test 025 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 025 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 549.184228 - 0: The maximum resident set size (KB) = 2804144 + 0: The total amount of wall time = 543.106982 + 0: The maximum resident set size (KB) = 2818904 Test 025 cpld_control_c48_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_p8_faster_intel Checking test 026 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1710,14 +1710,14 @@ Checking test 026 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 307.947897 - 0: The maximum resident set size (KB) = 3202300 + 0: The total amount of wall time = 310.138238 + 0: The maximum resident set size (KB) = 3181540 Test 026 cpld_control_p8_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_pdlib_p8_intel Checking test 027 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1781,14 +1781,14 @@ Checking test 027 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 968.923728 - 0: The maximum resident set size (KB) = 1744316 + 0: The total amount of wall time = 960.871244 + 0: The maximum resident set size (KB) = 1722240 Test 027 cpld_control_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_restart_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_restart_pdlib_p8_intel Checking test 028 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1840,14 +1840,14 @@ Checking test 028 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 451.102792 - 0: The maximum resident set size (KB) = 1164976 + 0: The total amount of wall time = 446.766122 + 0: The maximum resident set size (KB) = 1167840 Test 028 cpld_restart_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_mpi_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_mpi_pdlib_p8_intel Checking test 029 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1911,14 +1911,14 @@ Checking test 029 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1112.979072 - 0: The maximum resident set size (KB) = 1648780 + 0: The total amount of wall time = 1108.444483 + 0: The maximum resident set size (KB) = 1635332 Test 029 cpld_mpi_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_debug_pdlib_p8_intel Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1970,14 +1970,14 @@ Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1479.451803 - 0: The maximum resident set size (KB) = 1707716 + 0: The total amount of wall time = 1442.034213 + 0: The maximum resident set size (KB) = 1712532 Test 030 cpld_debug_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_flake_intel Checking test 031 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1988,14 +1988,14 @@ Checking test 031 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.378955 - 0: The maximum resident set size (KB) = 697968 + 0: The total amount of wall time = 186.763388 + 0: The maximum resident set size (KB) = 689712 Test 031 control_flake_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_CubedSphereGrid_intel Checking test 032 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2022,21 +2022,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 = 133.343412 - 0: The maximum resident set size (KB) = 650012 + 0: The total amount of wall time = 131.881859 + 0: The maximum resident set size (KB) = 647612 Test 032 control_CubedSphereGrid_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_CubedSphereGrid_parallel_intel Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_sfcf024.nc .........OK + Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK @@ -2044,14 +2044,14 @@ Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.174677 - 0: The maximum resident set size (KB) = 656064 + 0: The total amount of wall time = 140.013629 + 0: The maximum resident set size (KB) = 651588 Test 033 control_CubedSphereGrid_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_latlon_intel Checking test 034 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2062,14 +2062,14 @@ Checking test 034 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.767554 - 0: The maximum resident set size (KB) = 652172 + 0: The total amount of wall time = 136.142332 + 0: The maximum resident set size (KB) = 650640 Test 034 control_latlon_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_wrtGauss_netcdf_parallel_intel Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2080,14 +2080,14 @@ Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.169868 - 0: The maximum resident set size (KB) = 651832 + 0: The total amount of wall time = 136.756632 + 0: The maximum resident set size (KB) = 633412 Test 035 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_c48_intel Checking test 036 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2126,14 +2126,14 @@ Checking test 036 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 371.829639 -0: The maximum resident set size (KB) = 867324 +0: The total amount of wall time = 366.631044 +0: The maximum resident set size (KB) = 871440 Test 036 control_c48_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_c192_intel Checking test 037 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2144,14 +2144,14 @@ Checking test 037 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 531.172006 - 0: The maximum resident set size (KB) = 852224 + 0: The total amount of wall time = 526.917643 + 0: The maximum resident set size (KB) = 860120 Test 037 control_c192_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_c384_intel Checking test 038 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2162,14 +2162,14 @@ Checking test 038 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 532.877385 - 0: The maximum resident set size (KB) = 1280980 + 0: The total amount of wall time = 527.302440 + 0: The maximum resident set size (KB) = 1269412 Test 038 control_c384_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_c384gdas_intel Checking test 039 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2181,16 +2181,16 @@ 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.tile2.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 Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK @@ -2212,14 +2212,14 @@ Checking test 039 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 469.739241 - 0: The maximum resident set size (KB) = 1388788 + 0: The total amount of wall time = 457.154841 + 0: The maximum resident set size (KB) = 1393768 Test 039 control_c384gdas_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_stochy_intel Checking test 040 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2230,28 +2230,28 @@ Checking test 040 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.776286 - 0: The maximum resident set size (KB) = 645956 + 0: The total amount of wall time = 87.405742 + 0: The maximum resident set size (KB) = 648928 Test 040 control_stochy_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_stochy_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_stochy_restart_intel Checking test 041 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.749660 - 0: The maximum resident set size (KB) = 497932 + 0: The total amount of wall time = 50.156431 + 0: The maximum resident set size (KB) = 502984 Test 041 control_stochy_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_lndp_intel Checking test 042 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 042 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.385665 - 0: The maximum resident set size (KB) = 650468 + 0: The total amount of wall time = 82.708728 + 0: The maximum resident set size (KB) = 641008 Test 042 control_lndp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_iovr4_intel Checking test 043 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2284,14 +2284,14 @@ Checking test 043 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.423898 - 0: The maximum resident set size (KB) = 634604 + 0: The total amount of wall time = 135.408246 + 0: The maximum resident set size (KB) = 649188 Test 043 control_iovr4_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_iovr5_intel Checking test 044 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2306,14 +2306,14 @@ Checking test 044 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.381530 - 0: The maximum resident set size (KB) = 614944 + 0: The total amount of wall time = 135.799579 + 0: The maximum resident set size (KB) = 648492 Test 044 control_iovr5_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_p8_intel Checking test 045 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 045 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.330527 - 0: The maximum resident set size (KB) = 1625004 + 0: The total amount of wall time = 165.716380 + 0: The maximum resident set size (KB) = 1623972 Test 045 control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_p8_ugwpv1_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_p8_ugwpv1_intel Checking test 046 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 046 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.912219 - 0: The maximum resident set size (KB) = 1617168 + 0: The total amount of wall time = 166.776013 + 0: The maximum resident set size (KB) = 1572920 Test 046 control_p8_ugwpv1_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_restart_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_restart_p8_intel Checking test 047 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2460,14 +2460,14 @@ Checking test 047 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 89.578642 - 0: The maximum resident set size (KB) = 885068 + 0: The total amount of wall time = 87.180696 + 0: The maximum resident set size (KB) = 887204 Test 047 control_restart_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_noqr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_noqr_p8_intel Checking test 048 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2514,14 +2514,14 @@ Checking test 048 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.391461 - 0: The maximum resident set size (KB) = 1577588 + 0: The total amount of wall time = 163.522192 + 0: The maximum resident set size (KB) = 1602236 Test 048 control_noqr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_restart_noqr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_restart_noqr_p8_intel Checking test 049 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2560,14 +2560,14 @@ Checking test 049 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 86.939533 - 0: The maximum resident set size (KB) = 926892 + 0: The total amount of wall time = 84.866114 + 0: The maximum resident set size (KB) = 935296 Test 049 control_restart_noqr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_decomp_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_decomp_p8_intel Checking test 050 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2610,14 +2610,14 @@ Checking test 050 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 174.011024 - 0: The maximum resident set size (KB) = 1577832 + 0: The total amount of wall time = 173.886093 + 0: The maximum resident set size (KB) = 1582196 Test 050 control_decomp_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_2threads_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_2threads_p8_intel Checking test 051 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2660,14 +2660,14 @@ Checking test 051 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 164.391844 - 0: The maximum resident set size (KB) = 1715452 + 0: The total amount of wall time = 154.514723 + 0: The maximum resident set size (KB) = 1691136 Test 051 control_2threads_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_p8_lndp_intel Checking test 052 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2686,14 +2686,14 @@ Checking test 052 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 310.526857 - 0: The maximum resident set size (KB) = 1598928 + 0: The total amount of wall time = 301.053877 + 0: The maximum resident set size (KB) = 1609764 Test 052 control_p8_lndp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_p8_rrtmgp_intel Checking test 053 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2740,14 +2740,14 @@ Checking test 053 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 217.615531 - 0: The maximum resident set size (KB) = 1685400 + 0: The total amount of wall time = 218.398204 + 0: The maximum resident set size (KB) = 1663356 Test 053 control_p8_rrtmgp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_p8_mynn_intel Checking test 054 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2794,14 +2794,14 @@ Checking test 054 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.172888 - 0: The maximum resident set size (KB) = 1601828 + 0: The total amount of wall time = 168.873849 + 0: The maximum resident set size (KB) = 1599532 Test 054 control_p8_mynn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/merra2_thompson_intel Checking test 055 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2848,14 +2848,14 @@ Checking test 055 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.702167 - 0: The maximum resident set size (KB) = 1604160 + 0: The total amount of wall time = 196.198321 + 0: The maximum resident set size (KB) = 1605220 Test 055 merra2_thompson_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_control_intel Checking test 056 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2866,28 +2866,28 @@ Checking test 056 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.611794 - 0: The maximum resident set size (KB) = 846948 + 0: The total amount of wall time = 295.713910 + 0: The maximum resident set size (KB) = 846756 Test 056 regional_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_restart_intel Checking test 057 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.941597 - 0: The maximum resident set size (KB) = 1018916 + 0: The total amount of wall time = 151.754821 + 0: The maximum resident set size (KB) = 1019076 Test 057 regional_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_decomp_intel Checking test 058 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2898,14 +2898,14 @@ Checking test 058 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 328.490043 - 0: The maximum resident set size (KB) = 840324 + 0: The total amount of wall time = 313.553021 + 0: The maximum resident set size (KB) = 843964 Test 058 regional_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_2threads_intel Checking test 059 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2916,14 +2916,14 @@ Checking test 059 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 189.218277 - 0: The maximum resident set size (KB) = 850180 + 0: The total amount of wall time = 178.260640 + 0: The maximum resident set size (KB) = 843140 Test 059 regional_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_noquilt_intel Checking test 060 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2931,28 +2931,28 @@ Checking test 060 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 297.898314 - 0: The maximum resident set size (KB) = 1360492 + 0: The total amount of wall time = 293.659143 + 0: The maximum resident set size (KB) = 1362644 Test 060 regional_noquilt_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_netcdf_parallel_intel Checking test 061 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 299.729472 - 0: The maximum resident set size (KB) = 847164 + 0: The total amount of wall time = 295.305216 + 0: The maximum resident set size (KB) = 849156 Test 061 regional_netcdf_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_2dwrtdecomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_2dwrtdecomp_intel Checking test 062 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2963,14 +2963,14 @@ Checking test 062 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 300.631944 - 0: The maximum resident set size (KB) = 821600 + 0: The total amount of wall time = 296.978596 + 0: The maximum resident set size (KB) = 845444 Test 062 regional_2dwrtdecomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_wofs_intel Checking test 063 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2981,14 +2981,14 @@ Checking test 063 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 385.918907 - 0: The maximum resident set size (KB) = 1915916 + 0: The total amount of wall time = 383.518690 + 0: The maximum resident set size (KB) = 1909928 Test 063 regional_wofs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_intel Checking test 064 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3035,14 +3035,14 @@ Checking test 064 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 452.668752 - 0: The maximum resident set size (KB) = 1111132 + 0: The total amount of wall time = 451.830474 + 0: The maximum resident set size (KB) = 1087576 Test 064 rap_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_spp_sppt_shum_skeb_intel Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3053,14 +3053,14 @@ Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 236.259517 - 0: The maximum resident set size (KB) = 1282352 + 0: The total amount of wall time = 237.894509 + 0: The maximum resident set size (KB) = 1291712 Test 065 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_decomp_intel Checking test 066 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3107,14 +3107,14 @@ Checking test 066 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 475.049545 - 0: The maximum resident set size (KB) = 1021076 + 0: The total amount of wall time = 472.466311 + 0: The maximum resident set size (KB) = 1035248 Test 066 rap_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_2threads_intel Checking test 067 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3161,14 +3161,14 @@ Checking test 067 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 429.113838 - 0: The maximum resident set size (KB) = 1180108 + 0: The total amount of wall time = 422.903086 + 0: The maximum resident set size (KB) = 1153724 Test 067 rap_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_restart_intel Checking test 068 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3207,14 +3207,14 @@ Checking test 068 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.436125 - 0: The maximum resident set size (KB) = 1096828 + 0: The total amount of wall time = 232.173557 + 0: The maximum resident set size (KB) = 1101840 Test 068 rap_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_sfcdiff_intel Checking test 069 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3261,14 +3261,14 @@ Checking test 069 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.163392 - 0: The maximum resident set size (KB) = 1112992 + 0: The total amount of wall time = 449.595681 + 0: The maximum resident set size (KB) = 1109480 Test 069 rap_sfcdiff_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_sfcdiff_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_sfcdiff_decomp_intel Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3315,14 +3315,14 @@ Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 478.193251 - 0: The maximum resident set size (KB) = 1036672 + 0: The total amount of wall time = 475.221928 + 0: The maximum resident set size (KB) = 1023336 Test 070 rap_sfcdiff_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_sfcdiff_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_sfcdiff_restart_intel Checking test 071 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3361,14 +3361,14 @@ Checking test 071 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 336.816153 - 0: The maximum resident set size (KB) = 1130928 + 0: The total amount of wall time = 346.292082 + 0: The maximum resident set size (KB) = 1136088 Test 071 rap_sfcdiff_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_intel Checking test 072 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3415,14 +3415,14 @@ Checking test 072 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.931622 - 0: The maximum resident set size (KB) = 1028040 + 0: The total amount of wall time = 227.850574 + 0: The maximum resident set size (KB) = 1027572 Test 072 hrrr_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_decomp_intel Checking test 073 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3469,14 +3469,14 @@ Checking test 073 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 236.770983 - 0: The maximum resident set size (KB) = 1002696 + 0: The total amount of wall time = 233.299545 + 0: The maximum resident set size (KB) = 1021760 Test 073 hrrr_control_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_2threads_intel Checking test 074 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3523,28 +3523,28 @@ Checking test 074 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 211.340348 - 0: The maximum resident set size (KB) = 1110984 + 0: The total amount of wall time = 210.780558 + 0: The maximum resident set size (KB) = 1097204 Test 074 hrrr_control_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_restart_intel Checking test 075 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 118.582682 - 0: The maximum resident set size (KB) = 994824 + 0: The total amount of wall time = 121.476800 + 0: The maximum resident set size (KB) = 1004024 Test 075 hrrr_control_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rrfs_v1beta_intel Checking test 076 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3591,14 +3591,14 @@ Checking test 076 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 443.882229 - 0: The maximum resident set size (KB) = 1091760 + 0: The total amount of wall time = 445.921908 + 0: The maximum resident set size (KB) = 1085164 Test 076 rrfs_v1beta_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rrfs_v1nssl_intel Checking test 077 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3613,14 +3613,14 @@ Checking test 077 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 539.457211 - 0: The maximum resident set size (KB) = 1985020 + 0: The total amount of wall time = 536.554275 + 0: The maximum resident set size (KB) = 1982192 Test 077 rrfs_v1nssl_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rrfs_v1nssl_nohailnoccn_intel Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3635,14 +3635,14 @@ Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 526.087498 - 0: The maximum resident set size (KB) = 2073840 + 0: The total amount of wall time = 520.794567 + 0: The maximum resident set size (KB) = 2062540 Test 078 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3653,14 +3653,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 343.029445 - 0: The maximum resident set size (KB) = 743548 + 0: The total amount of wall time = 345.337275 + 0: The maximum resident set size (KB) = 738752 Test 079 control_csawmg_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3671,14 +3671,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 343.625556 - 0: The maximum resident set size (KB) = 746096 + 0: The total amount of wall time = 337.785170 + 0: The maximum resident set size (KB) = 746136 Test 080 control_csawmgt_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3689,26 +3689,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 188.566456 - 0: The maximum resident set size (KB) = 744336 + 0: The total amount of wall time = 188.291650 + 0: The maximum resident set size (KB) = 738336 Test 081 control_ras_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_wam_intel Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 115.037020 - 0: The maximum resident set size (KB) = 636560 + 0: The total amount of wall time = 113.520156 + 0: The maximum resident set size (KB) = 650812 Test 082 control_wam_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3755,14 +3755,14 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 154.812975 - 0: The maximum resident set size (KB) = 1614800 + 0: The total amount of wall time = 147.166441 + 0: The maximum resident set size (KB) = 1615760 Test 083 control_p8_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3773,14 +3773,14 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 266.591044 - 0: The maximum resident set size (KB) = 853148 + 0: The total amount of wall time = 268.277682 + 0: The maximum resident set size (KB) = 821772 Test 084 regional_control_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3807,364 +3807,364 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 148.936978 - 0: The maximum resident set size (KB) = 806872 + 0: The total amount of wall time = 148.358869 + 0: The maximum resident set size (KB) = 814320 Test 085 control_CubedSphereGrid_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_wrtGauss_netcdf_parallel_debug_intel Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.841355 - 0: The maximum resident set size (KB) = 805576 + 0: The total amount of wall time = 148.186012 + 0: The maximum resident set size (KB) = 808564 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_stochy_debug_intel Checking test 087 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.216324 - 0: The maximum resident set size (KB) = 809712 + 0: The total amount of wall time = 167.425432 + 0: The maximum resident set size (KB) = 818100 Test 087 control_stochy_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_lndp_debug_intel Checking test 088 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.966249 - 0: The maximum resident set size (KB) = 815028 + 0: The total amount of wall time = 149.581309 + 0: The maximum resident set size (KB) = 816408 Test 088 control_lndp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_csawmg_debug_intel Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.533042 - 0: The maximum resident set size (KB) = 853208 + 0: The total amount of wall time = 224.122102 + 0: The maximum resident set size (KB) = 853740 Test 089 control_csawmg_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_csawmgt_debug_intel Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.936036 - 0: The maximum resident set size (KB) = 863436 + 0: The total amount of wall time = 227.742921 + 0: The maximum resident set size (KB) = 828476 Test 090 control_csawmgt_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_ras_debug_intel Checking test 091 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.954988 - 0: The maximum resident set size (KB) = 823328 + 0: The total amount of wall time = 145.364934 + 0: The maximum resident set size (KB) = 824932 Test 091 control_ras_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_diag_debug_intel Checking test 092 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.060422 - 0: The maximum resident set size (KB) = 866196 + 0: The total amount of wall time = 150.749906 + 0: The maximum resident set size (KB) = 868432 Test 092 control_diag_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_debug_p8_intel Checking test 093 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.603225 - 0: The maximum resident set size (KB) = 1632288 + 0: The total amount of wall time = 159.776603 + 0: The maximum resident set size (KB) = 1636556 Test 093 control_debug_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_debug_intel Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 959.033095 - 0: The maximum resident set size (KB) = 832984 + 0: The total amount of wall time = 951.027689 + 0: The maximum resident set size (KB) = 842216 Test 094 regional_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_debug_intel Checking test 095 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.094735 - 0: The maximum resident set size (KB) = 1193176 + 0: The total amount of wall time = 272.713808 + 0: The maximum resident set size (KB) = 1192076 Test 095 rap_control_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_debug_intel Checking test 096 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.061120 - 0: The maximum resident set size (KB) = 1184896 + 0: The total amount of wall time = 265.195137 + 0: The maximum resident set size (KB) = 1169180 Test 096 hrrr_control_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_gf_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_gf_debug_intel Checking test 097 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.748411 - 0: The maximum resident set size (KB) = 1194040 + 0: The total amount of wall time = 277.709224 + 0: The maximum resident set size (KB) = 1207512 Test 097 hrrr_gf_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_c3_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_c3_debug_intel Checking test 098 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.608745 - 0: The maximum resident set size (KB) = 1191604 + 0: The total amount of wall time = 269.712360 + 0: The maximum resident set size (KB) = 1202484 Test 098 hrrr_c3_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_unified_drag_suite_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_unified_drag_suite_debug_intel Checking test 099 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.440757 - 0: The maximum resident set size (KB) = 1196208 + 0: The total amount of wall time = 275.687025 + 0: The maximum resident set size (KB) = 1191120 Test 099 rap_unified_drag_suite_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_diag_debug_intel Checking test 100 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.116998 - 0: The maximum resident set size (KB) = 1273508 + 0: The total amount of wall time = 285.225502 + 0: The maximum resident set size (KB) = 1276272 Test 100 rap_diag_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_cires_ugwp_debug_intel Checking test 101 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.637692 - 0: The maximum resident set size (KB) = 1193304 + 0: The total amount of wall time = 278.728061 + 0: The maximum resident set size (KB) = 1203780 Test 101 rap_cires_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_unified_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_unified_ugwp_debug_intel Checking test 102 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.728256 - 0: The maximum resident set size (KB) = 1192744 + 0: The total amount of wall time = 276.104913 + 0: The maximum resident set size (KB) = 1203104 Test 102 rap_unified_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_lndp_debug_intel Checking test 103 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.082640 - 0: The maximum resident set size (KB) = 1192352 + 0: The total amount of wall time = 275.144271 + 0: The maximum resident set size (KB) = 1195980 Test 103 rap_lndp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_progcld_thompson_debug_intel Checking test 104 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.930419 - 0: The maximum resident set size (KB) = 1193612 + 0: The total amount of wall time = 278.649890 + 0: The maximum resident set size (KB) = 1207756 Test 104 rap_progcld_thompson_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_noah_debug_intel Checking test 105 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.866323 - 0: The maximum resident set size (KB) = 1186896 + 0: The total amount of wall time = 263.365633 + 0: The maximum resident set size (KB) = 1192308 Test 105 rap_noah_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_sfcdiff_debug_intel Checking test 106 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.154978 - 0: The maximum resident set size (KB) = 1200696 + 0: The total amount of wall time = 272.499361 + 0: The maximum resident set size (KB) = 1179132 Test 106 rap_sfcdiff_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 457.704723 - 0: The maximum resident set size (KB) = 1187336 + 0: The total amount of wall time = 465.002937 + 0: The maximum resident set size (KB) = 1188692 Test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rrfs_v1beta_debug_intel Checking test 108 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.584586 - 0: The maximum resident set size (KB) = 1180620 + 0: The total amount of wall time = 270.618412 + 0: The maximum resident set size (KB) = 1166872 Test 108 rrfs_v1beta_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_clm_lake_debug_intel Checking test 109 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 331.456029 - 0: The maximum resident set size (KB) = 1196800 + 0: The total amount of wall time = 347.960003 + 0: The maximum resident set size (KB) = 1182832 Test 109 rap_clm_lake_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_flake_debug_intel Checking test 110 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.537017 - 0: The maximum resident set size (KB) = 1202272 + 0: The total amount of wall time = 274.040356 + 0: The maximum resident set size (KB) = 1197972 Test 110 rap_flake_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/gnv1_c96_no_nest_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/gnv1_c96_no_nest_debug_intel Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4205,26 +4205,26 @@ Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 483.143276 - 0: The maximum resident set size (KB) = 1174568 + 0: The total amount of wall time = 481.204103 + 0: The maximum resident set size (KB) = 1201292 Test 111 gnv1_c96_no_nest_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_wam_debug_intel Checking test 112 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 278.319369 - 0: The maximum resident set size (KB) = 513804 + 0: The total amount of wall time = 282.551065 + 0: The maximum resident set size (KB) = 507092 Test 112 control_wam_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4235,14 +4235,14 @@ Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 227.763591 - 0: The maximum resident set size (KB) = 1149428 + 0: The total amount of wall time = 229.701025 + 0: The maximum resident set size (KB) = 1156596 Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_dyn32_phy32_intel Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4289,14 +4289,14 @@ Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 372.317616 - 0: The maximum resident set size (KB) = 1042268 + 0: The total amount of wall time = 380.734118 + 0: The maximum resident set size (KB) = 1043884 Test 114 rap_control_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_dyn32_phy32_intel Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4343,14 +4343,14 @@ Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.930699 - 0: The maximum resident set size (KB) = 979608 + 0: The total amount of wall time = 197.789871 + 0: The maximum resident set size (KB) = 948120 Test 115 hrrr_control_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_2threads_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_2threads_dyn32_phy32_intel Checking test 116 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4397,14 +4397,14 @@ Checking test 116 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 356.141674 - 0: The maximum resident set size (KB) = 1062296 + 0: The total amount of wall time = 359.138367 + 0: The maximum resident set size (KB) = 1086560 Test 116 rap_2threads_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_2threads_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_2threads_dyn32_phy32_intel Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4451,14 +4451,14 @@ Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 178.030121 - 0: The maximum resident set size (KB) = 960184 + 0: The total amount of wall time = 186.486500 + 0: The maximum resident set size (KB) = 954888 Test 117 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_decomp_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_decomp_dyn32_phy32_intel Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4505,14 +4505,14 @@ Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.647493 - 0: The maximum resident set size (KB) = 910184 + 0: The total amount of wall time = 212.341917 + 0: The maximum resident set size (KB) = 924884 Test 118 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_restart_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_restart_dyn32_phy32_intel Checking test 119 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4551,28 +4551,28 @@ Checking test 119 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 275.412969 - 0: The maximum resident set size (KB) = 1025788 + 0: The total amount of wall time = 278.183442 + 0: The maximum resident set size (KB) = 1034820 Test 119 rap_restart_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_restart_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_restart_dyn32_phy32_intel Checking test 120 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.460017 - 0: The maximum resident set size (KB) = 898340 + 0: The total amount of wall time = 106.644047 + 0: The maximum resident set size (KB) = 929388 Test 120 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_control_intel Checking test 121 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4588,40 +4588,40 @@ Checking test 121 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 112.483801 - 0: The maximum resident set size (KB) = 1176884 + 0: The total amount of wall time = 117.166581 + 0: The maximum resident set size (KB) = 1193788 Test 121 conus13km_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_2threads_intel Checking test 122 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 45.804845 - 0: The maximum resident set size (KB) = 1115484 + 0: The total amount of wall time = 56.320225 + 0: The maximum resident set size (KB) = 1112940 Test 122 conus13km_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_restart_mismatch_intel Checking test 123 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 65.358910 - 0: The maximum resident set size (KB) = 1098872 + 0: The total amount of wall time = 72.800518 + 0: The maximum resident set size (KB) = 1071108 Test 123 conus13km_restart_mismatch_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_dyn64_phy32_intel Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4668,42 +4668,42 @@ Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.991211 - 0: The maximum resident set size (KB) = 957908 + 0: The total amount of wall time = 249.216127 + 0: The maximum resident set size (KB) = 992632 Test 124 rap_control_dyn64_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_debug_dyn32_phy32_intel Checking test 125 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.819473 - 0: The maximum resident set size (KB) = 1064756 + 0: The total amount of wall time = 273.096652 + 0: The maximum resident set size (KB) = 1080520 Test 125 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_debug_dyn32_phy32_intel Checking test 126 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.329690 - 0: The maximum resident set size (KB) = 1073156 + 0: The total amount of wall time = 270.779893 + 0: The maximum resident set size (KB) = 1074964 Test 126 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_debug_intel Checking test 127 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4717,14 +4717,14 @@ Checking test 127 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 836.929510 - 0: The maximum resident set size (KB) = 1219012 + 0: The total amount of wall time = 822.060671 + 0: The maximum resident set size (KB) = 1224652 Test 127 conus13km_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_debug_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_debug_qr_intel Checking test 128 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4738,81 +4738,81 @@ Checking test 128 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 838.945047 - 0: The maximum resident set size (KB) = 896440 + 0: The total amount of wall time = 848.161375 + 0: The maximum resident set size (KB) = 912204 Test 128 conus13km_debug_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_debug_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_debug_2threads_intel Checking test 129 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 465.573948 - 0: The maximum resident set size (KB) = 1151208 + 0: The total amount of wall time = 483.687570 + 0: The maximum resident set size (KB) = 1148648 Test 129 conus13km_debug_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_radar_tten_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_radar_tten_debug_intel Checking test 130 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 832.401629 - 0: The maximum resident set size (KB) = 1284068 + 0: The total amount of wall time = 828.697059 + 0: The maximum resident set size (KB) = 1291956 Test 130 conus13km_radar_tten_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_dyn64_phy32_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_dyn64_phy32_debug_intel Checking test 131 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.953827 - 0: The maximum resident set size (KB) = 1118208 + 0: The total amount of wall time = 282.496308 + 0: The maximum resident set size (KB) = 1111472 Test 131 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_atm_intel Checking test 132 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 270.302056 - 0: The maximum resident set size (KB) = 730896 + 0: The total amount of wall time = 274.519797 + 0: The maximum resident set size (KB) = 728856 Test 132 hafs_regional_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_atm_thompson_gfdlsf_intel Checking test 133 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 340.450242 - 0: The maximum resident set size (KB) = 1070492 + 0: The total amount of wall time = 346.000603 + 0: The maximum resident set size (KB) = 1108228 Test 133 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_atm_ocn_intel Checking test 134 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4821,14 +4821,14 @@ Checking test 134 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 394.739290 - 0: The maximum resident set size (KB) = 819692 + 0: The total amount of wall time = 393.571199 + 0: The maximum resident set size (KB) = 808008 Test 134 hafs_regional_atm_ocn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_atm_wav_intel Checking test 135 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4837,14 +4837,14 @@ Checking test 135 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 760.309166 - 0: The maximum resident set size (KB) = 861096 + 0: The total amount of wall time = 764.978842 + 0: The maximum resident set size (KB) = 849596 Test 135 hafs_regional_atm_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_atm_ocn_wav_intel Checking test 136 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4855,14 +4855,14 @@ Checking test 136 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 869.093941 - 0: The maximum resident set size (KB) = 851756 + 0: The total amount of wall time = 868.318725 + 0: The maximum resident set size (KB) = 878360 Test 136 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_1nest_atm_intel Checking test 137 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4884,14 +4884,14 @@ 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 = 306.024043 - 0: The maximum resident set size (KB) = 506620 + 0: The total amount of wall time = 303.861184 + 0: The maximum resident set size (KB) = 500544 Test 137 hafs_regional_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_telescopic_2nests_atm_intel Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4900,14 +4900,14 @@ Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 377.410231 - 0: The maximum resident set size (KB) = 512640 + 0: The total amount of wall time = 378.433064 + 0: The maximum resident set size (KB) = 517536 Test 138 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_global_1nest_atm_intel Checking test 139 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4917,19 +4917,19 @@ Checking test 139 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK @@ -4954,14 +4954,14 @@ Checking test 139 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 151.572522 - 0: The maximum resident set size (KB) = 372680 + 0: The total amount of wall time = 150.087193 + 0: The maximum resident set size (KB) = 374324 Test 139 hafs_global_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_global_multiple_4nests_atm_intel Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4989,21 +4989,21 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK @@ -5024,7 +5024,7 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK @@ -5043,14 +5043,14 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 406.365355 - 0: The maximum resident set size (KB) = 454676 + 0: The total amount of wall time = 406.787935 + 0: The maximum resident set size (KB) = 479708 Test 140 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_specified_moving_1nest_atm_intel Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5059,14 +5059,14 @@ Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 204.128496 - 0: The maximum resident set size (KB) = 528220 + 0: The total amount of wall time = 212.305615 + 0: The maximum resident set size (KB) = 529008 Test 141 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_storm_following_1nest_atm_intel Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5084,18 +5084,18 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 193.849667 - 0: The maximum resident set size (KB) = 527984 + 0: The total amount of wall time = 200.826276 + 0: The maximum resident set size (KB) = 531480 Test 142 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5104,28 +5104,28 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 230.172277 - 0: The maximum resident set size (KB) = 585428 + 0: The total amount of wall time = 246.025371 + 0: The maximum resident set size (KB) = 587884 Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_global_storm_following_1nest_atm_intel Checking test 144 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 62.824344 - 0: The maximum resident set size (KB) = 395480 + 0: The total amount of wall time = 76.751532 + 0: The maximum resident set size (KB) = 404804 Test 144 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/gnv1_nested_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/gnv1_nested_intel Checking test 145 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5138,13 +5138,13 @@ Checking test 145 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............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 @@ -5172,28 +5172,28 @@ Checking test 145 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 226.659208 - 0: The maximum resident set size (KB) = 796656 + 0: The total amount of wall time = 241.419489 + 0: The maximum resident set size (KB) = 791328 Test 145 gnv1_nested_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 730.866536 - 0: The maximum resident set size (KB) = 541152 + 0: The total amount of wall time = 726.824608 + 0: The maximum resident set size (KB) = 562212 Test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5204,49 +5204,49 @@ 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 = 499.229735 - 0: The maximum resident set size (KB) = 638172 + 0: The total amount of wall time = 502.308956 + 0: The maximum resident set size (KB) = 670460 Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... - Comparing atmf006.nc ............MISSING baseline - Comparing sfcf006.nc ............MISSING baseline - Comparing atm.nest02.f006.nc ............MISSING baseline - Comparing sfc.nest02.f006.nc ............MISSING baseline - Comparing archv.2020_238_18.a ............MISSING baseline - Comparing archs.2020_238_18.a ............MISSING baseline - Comparing 20200825.180000.out_grd.ww3 ............MISSING baseline - Comparing 20200825.180000.out_pnt.ww3 ............MISSING baseline + 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 = 497.506985 - 0: The maximum resident set size (KB) = 709000 + 0: The total amount of wall time = 510.203423 + 0: The maximum resident set size (KB) = 733980 -Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel FAIL Tries: 2 +Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... - Comparing atmf003.nc ............MISSING baseline - Comparing sfcf003.nc ............MISSING baseline - Comparing atm.nest02.f003.nc ............MISSING baseline - Comparing sfc.nest02.f003.nc ............MISSING baseline - Comparing ocn_2020_08_25_15.nc ............MISSING baseline - Comparing 20200825.150000.out_grd.ww3 ............MISSING baseline - Comparing 20200825.150000.out_pnt.ww3 ............MISSING baseline + 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 = 374.610719 - 0: The maximum resident set size (KB) = 736936 + 0: The total amount of wall time = 380.434319 + 0: The maximum resident set size (KB) = 740572 -Test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel FAIL Tries: 2 +Test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_docn_intel Checking test 150 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5254,14 +5254,14 @@ Checking test 150 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.664086 - 0: The maximum resident set size (KB) = 827168 + 0: The total amount of wall time = 368.832649 + 0: The maximum resident set size (KB) = 821284 Test 150 hafs_regional_docn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_docn_oisst_intel Checking test 151 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5269,131 +5269,131 @@ Checking test 151 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 368.979218 - 0: The maximum resident set size (KB) = 809844 + 0: The total amount of wall time = 372.557851 + 0: The maximum resident set size (KB) = 788952 Test 151 hafs_regional_docn_oisst_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_datm_cdeps_intel Checking test 152 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 966.477966 - 0: The maximum resident set size (KB) = 1187440 + 0: The total amount of wall time = 953.302486 + 0: The maximum resident set size (KB) = 1208600 Test 152 hafs_regional_datm_cdeps_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_control_cfsr_intel Checking test 153 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.045226 - 0: The maximum resident set size (KB) = 1136264 + 0: The total amount of wall time = 147.117039 + 0: The maximum resident set size (KB) = 1119480 Test 153 datm_cdeps_control_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_restart_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_restart_cfsr_intel Checking test 154 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 88.609697 - 0: The maximum resident set size (KB) = 1080908 + 0: The total amount of wall time = 91.537728 + 0: The maximum resident set size (KB) = 1079836 Test 154 datm_cdeps_restart_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_control_gefs_intel Checking test 155 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.064712 - 0: The maximum resident set size (KB) = 1012268 + 0: The total amount of wall time = 145.820813 + 0: The maximum resident set size (KB) = 1007208 Test 155 datm_cdeps_control_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_iau_gefs_intel Checking test 156 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.388474 - 0: The maximum resident set size (KB) = 1004848 + 0: The total amount of wall time = 147.909901 + 0: The maximum resident set size (KB) = 1007436 Test 156 datm_cdeps_iau_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_stochy_gefs_intel Checking test 157 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.734841 - 0: The maximum resident set size (KB) = 1006324 + 0: The total amount of wall time = 146.983540 + 0: The maximum resident set size (KB) = 1002032 Test 157 datm_cdeps_stochy_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_ciceC_cfsr_intel Checking test 158 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.888263 - 0: The maximum resident set size (KB) = 1131720 + 0: The total amount of wall time = 152.967205 + 0: The maximum resident set size (KB) = 1121584 Test 158 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_bulk_cfsr_intel Checking test 159 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.225255 - 0: The maximum resident set size (KB) = 1125356 + 0: The total amount of wall time = 151.204371 + 0: The maximum resident set size (KB) = 1122920 Test 159 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_bulk_gefs_intel Checking test 160 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.088172 - 0: The maximum resident set size (KB) = 1011272 + 0: The total amount of wall time = 144.246812 + 0: The maximum resident set size (KB) = 1006772 Test 160 datm_cdeps_bulk_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_mx025_cfsr_intel Checking test 161 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5402,14 +5402,14 @@ Checking test 161 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 401.418617 - 0: The maximum resident set size (KB) = 1058428 + 0: The total amount of wall time = 406.124419 + 0: The maximum resident set size (KB) = 1052020 Test 161 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_mx025_gefs_intel Checking test 162 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5418,77 +5418,77 @@ Checking test 162 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 398.013795 - 0: The maximum resident set size (KB) = 1018824 + 0: The total amount of wall time = 363.946917 + 0: The maximum resident set size (KB) = 1049216 Test 162 datm_cdeps_mx025_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_multiple_files_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_multiple_files_cfsr_intel Checking test 163 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.872479 - 0: The maximum resident set size (KB) = 1129428 + 0: The total amount of wall time = 153.268806 + 0: The maximum resident set size (KB) = 1119508 Test 163 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_3072x1536_cfsr_intel Checking test 164 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 223.561828 - 0: The maximum resident set size (KB) = 2438468 + 0: The total amount of wall time = 279.947413 + 0: The maximum resident set size (KB) = 2420228 Test 164 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_gfs_intel Checking test 165 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 223.472642 - 0: The maximum resident set size (KB) = 2426704 + 0: The total amount of wall time = 227.888244 + 0: The maximum resident set size (KB) = 2460044 Test 165 datm_cdeps_gfs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_debug_cfsr_intel Checking test 166 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 356.828933 - 0: The maximum resident set size (KB) = 1041032 + 0: The total amount of wall time = 355.109843 + 0: The maximum resident set size (KB) = 1050908 Test 166 datm_cdeps_debug_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_control_cfsr_faster_intel Checking test 167 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.071558 - 0: The maximum resident set size (KB) = 1118192 + 0: The total amount of wall time = 154.218795 + 0: The maximum resident set size (KB) = 1124380 Test 167 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_lnd_gswp3_intel Checking test 168 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5497,14 +5497,14 @@ Checking test 168 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 36.890047 - 0: The maximum resident set size (KB) = 254664 + 0: The total amount of wall time = 38.616207 + 0: The maximum resident set size (KB) = 253848 Test 168 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_lnd_era5_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_lnd_era5_intel Checking test 169 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5513,14 +5513,14 @@ Checking test 169 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 38.871443 - 0: The maximum resident set size (KB) = 318204 + 0: The total amount of wall time = 41.283901 + 0: The maximum resident set size (KB) = 317312 Test 169 datm_cdeps_lnd_era5_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_lnd_era5_rst_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_lnd_era5_rst_intel Checking test 170 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5529,14 +5529,14 @@ Checking test 170 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 30.342382 - 0: The maximum resident set size (KB) = 319988 + 0: The total amount of wall time = 22.678163 + 0: The maximum resident set size (KB) = 316032 Test 170 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_p8_atmlnd_sbs_intel Checking test 171 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5625,14 +5625,14 @@ Checking test 171 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 260.309372 - 0: The maximum resident set size (KB) = 1579432 + 0: The total amount of wall time = 250.291900 + 0: The maximum resident set size (KB) = 1585788 Test 171 control_p8_atmlnd_sbs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_p8_atmlnd_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_p8_atmlnd_intel Checking test 172 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5721,14 +5721,14 @@ Checking test 172 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 250.147641 - 0: The maximum resident set size (KB) = 1578552 + 0: The total amount of wall time = 252.811255 + 0: The maximum resident set size (KB) = 1576664 Test 172 control_p8_atmlnd_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_restart_p8_atmlnd_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_restart_p8_atmlnd_intel Checking test 173 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5749,14 +5749,14 @@ Checking test 173 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 128.499228 - 0: The maximum resident set size (KB) = 888352 + 0: The total amount of wall time = 131.476068 + 0: The maximum resident set size (KB) = 886508 Test 173 control_restart_p8_atmlnd_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/atmwav_control_noaero_p8_intel Checking test 174 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5799,14 +5799,14 @@ Checking test 174 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 93.291942 - 0: The maximum resident set size (KB) = 1659324 + 0: The total amount of wall time = 94.339391 + 0: The maximum resident set size (KB) = 1643340 Test 174 atmwav_control_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_atmwav_intel Checking test 175 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5850,14 +5850,14 @@ Checking test 175 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 88.372164 - 0: The maximum resident set size (KB) = 667296 + 0: The total amount of wall time = 88.774079 + 0: The maximum resident set size (KB) = 663592 Test 175 control_atmwav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/atmaero_control_p8_intel Checking test 176 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5901,14 +5901,14 @@ Checking test 176 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.803413 - 0: The maximum resident set size (KB) = 3003396 + 0: The total amount of wall time = 227.898102 + 0: The maximum resident set size (KB) = 2975888 Test 176 atmaero_control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/atmaero_control_p8_rad_intel Checking test 177 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5952,14 +5952,14 @@ Checking test 177 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 277.512089 - 0: The maximum resident set size (KB) = 3071440 + 0: The total amount of wall time = 274.489658 + 0: The maximum resident set size (KB) = 3091772 Test 177 atmaero_control_p8_rad_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/atmaero_control_p8_rad_micro_intel Checking test 178 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6003,14 +6003,14 @@ Checking test 178 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 289.813087 - 0: The maximum resident set size (KB) = 3076800 + 0: The total amount of wall time = 288.085397 + 0: The maximum resident set size (KB) = 3111208 Test 178 atmaero_control_p8_rad_micro_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_atmaq_debug_intel Checking test 179 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6024,14 +6024,14 @@ Checking test 179 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1209.075083 - 0: The maximum resident set size (KB) = 4494576 + 0: The total amount of wall time = 1192.875385 + 0: The maximum resident set size (KB) = 4511000 Test 179 regional_atmaq_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_c48_gnu Checking test 180 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6070,14 +6070,14 @@ Checking test 180 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 689.606432 -0: The maximum resident set size (KB) = 792240 +0: The total amount of wall time = 688.896216 +0: The maximum resident set size (KB) = 792632 Test 180 control_c48_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_stochy_gnu Checking test 181 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -6088,14 +6088,14 @@ Checking test 181 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 226.278727 - 0: The maximum resident set size (KB) = 550544 + 0: The total amount of wall time = 233.870463 + 0: The maximum resident set size (KB) = 552204 Test 181 control_stochy_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_ras_gnu Checking test 182 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6106,14 +6106,14 @@ Checking test 182 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 289.642160 - 0: The maximum resident set size (KB) = 558528 + 0: The total amount of wall time = 289.569964 + 0: The maximum resident set size (KB) = 557388 Test 182 control_ras_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_p8_gnu Checking test 183 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6160,14 +6160,14 @@ Checking test 183 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.317396 - 0: The maximum resident set size (KB) = 1307328 + 0: The total amount of wall time = 279.420545 + 0: The maximum resident set size (KB) = 1304076 Test 183 control_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_p8_ugwpv1_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_p8_ugwpv1_gnu Checking test 184 control_p8_ugwpv1_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6214,14 +6214,14 @@ Checking test 184 control_p8_ugwpv1_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.326964 - 0: The maximum resident set size (KB) = 1313696 + 0: The total amount of wall time = 275.534805 + 0: The maximum resident set size (KB) = 1311316 Test 184 control_p8_ugwpv1_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_flake_gnu Checking test 185 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6232,14 +6232,14 @@ Checking test 185 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 341.506633 - 0: The maximum resident set size (KB) = 599120 + 0: The total amount of wall time = 342.662094 + 0: The maximum resident set size (KB) = 598184 Test 185 control_flake_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_gnu Checking test 186 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6286,14 +6286,14 @@ Checking test 186 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 696.970311 - 0: The maximum resident set size (KB) = 895756 + 0: The total amount of wall time = 696.633085 + 0: The maximum resident set size (KB) = 894156 Test 186 rap_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_decomp_gnu Checking test 187 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6340,14 +6340,14 @@ Checking test 187 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 704.284708 - 0: The maximum resident set size (KB) = 905032 + 0: The total amount of wall time = 701.800183 + 0: The maximum resident set size (KB) = 898476 Test 187 rap_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_2threads_gnu Checking test 188 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6394,14 +6394,14 @@ Checking test 188 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 629.291812 - 0: The maximum resident set size (KB) = 980544 + 0: The total amount of wall time = 623.182313 + 0: The maximum resident set size (KB) = 983560 Test 188 rap_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_restart_gnu Checking test 189 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6440,14 +6440,14 @@ Checking test 189 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 355.792175 - 0: The maximum resident set size (KB) = 625748 + 0: The total amount of wall time = 350.670993 + 0: The maximum resident set size (KB) = 623392 Test 189 rap_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_sfcdiff_gnu Checking test 190 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6494,14 +6494,14 @@ Checking test 190 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 706.586217 - 0: The maximum resident set size (KB) = 894412 + 0: The total amount of wall time = 693.738976 + 0: The maximum resident set size (KB) = 900804 Test 190 rap_sfcdiff_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_sfcdiff_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_sfcdiff_decomp_gnu Checking test 191 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6548,14 +6548,14 @@ Checking test 191 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 700.261473 - 0: The maximum resident set size (KB) = 896308 + 0: The total amount of wall time = 720.224807 + 0: The maximum resident set size (KB) = 897196 Test 191 rap_sfcdiff_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_sfcdiff_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_sfcdiff_restart_gnu Checking test 192 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6594,14 +6594,14 @@ Checking test 192 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 526.105044 - 0: The maximum resident set size (KB) = 629696 + 0: The total amount of wall time = 517.616788 + 0: The maximum resident set size (KB) = 629740 Test 192 rap_sfcdiff_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_gnu Checking test 193 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6648,14 +6648,14 @@ Checking test 193 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 352.672988 - 0: The maximum resident set size (KB) = 891060 + 0: The total amount of wall time = 357.785219 + 0: The maximum resident set size (KB) = 892756 Test 193 hrrr_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_noqr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_noqr_gnu Checking test 194 hrrr_control_noqr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6702,14 +6702,14 @@ Checking test 194 hrrr_control_noqr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 350.167569 - 0: The maximum resident set size (KB) = 879464 + 0: The total amount of wall time = 353.818968 + 0: The maximum resident set size (KB) = 878592 Test 194 hrrr_control_noqr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_2threads_gnu Checking test 195 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6756,14 +6756,14 @@ Checking test 195 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 309.194051 - 0: The maximum resident set size (KB) = 975212 + 0: The total amount of wall time = 308.542055 + 0: The maximum resident set size (KB) = 977444 Test 195 hrrr_control_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_decomp_gnu Checking test 196 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6810,42 +6810,42 @@ Checking test 196 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 353.501232 - 0: The maximum resident set size (KB) = 897772 + 0: The total amount of wall time = 348.044669 + 0: The maximum resident set size (KB) = 890116 Test 196 hrrr_control_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_restart_gnu Checking test 197 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 184.000744 - 0: The maximum resident set size (KB) = 612376 + 0: The total amount of wall time = 186.654459 + 0: The maximum resident set size (KB) = 608856 Test 197 hrrr_control_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_restart_noqr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_restart_noqr_gnu Checking test 198 hrrr_control_restart_noqr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 183.313754 - 0: The maximum resident set size (KB) = 704240 + 0: The total amount of wall time = 183.775492 + 0: The maximum resident set size (KB) = 704132 Test 198 hrrr_control_restart_noqr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rrfs_v1beta_gnu Checking test 199 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6892,224 +6892,224 @@ Checking test 199 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 686.679627 - 0: The maximum resident set size (KB) = 895988 + 0: The total amount of wall time = 681.177390 + 0: The maximum resident set size (KB) = 894980 Test 199 rrfs_v1beta_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_diag_debug_gnu Checking test 200 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 89.043211 - 0: The maximum resident set size (KB) = 590932 + 0: The total amount of wall time = 87.662658 + 0: The maximum resident set size (KB) = 598448 Test 200 control_diag_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_debug_gnu Checking test 201 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 440.630302 - 0: The maximum resident set size (KB) = 594584 + 0: The total amount of wall time = 450.541588 + 0: The maximum resident set size (KB) = 602624 Test 201 regional_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_debug_gnu Checking test 202 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 141.361404 - 0: The maximum resident set size (KB) = 911352 + 0: The total amount of wall time = 144.797289 + 0: The maximum resident set size (KB) = 913104 Test 202 rap_control_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_debug_gnu Checking test 203 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.185637 - 0: The maximum resident set size (KB) = 898932 + 0: The total amount of wall time = 142.575201 + 0: The maximum resident set size (KB) = 906196 Test 203 hrrr_control_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_gf_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_gf_debug_gnu Checking test 204 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.812614 - 0: The maximum resident set size (KB) = 905844 + 0: The total amount of wall time = 144.402465 + 0: The maximum resident set size (KB) = 910188 Test 204 hrrr_gf_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_c3_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_c3_debug_gnu Checking test 205 hrrr_c3_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 143.355771 - 0: The maximum resident set size (KB) = 903104 + 0: The total amount of wall time = 144.849773 + 0: The maximum resident set size (KB) = 876768 Test 205 hrrr_c3_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_diag_debug_gnu Checking test 206 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.325696 - 0: The maximum resident set size (KB) = 991408 + 0: The total amount of wall time = 154.207474 + 0: The maximum resident set size (KB) = 1001556 Test 206 rap_diag_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 207 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.670815 - 0: The maximum resident set size (KB) = 908296 + 0: The total amount of wall time = 226.457246 + 0: The maximum resident set size (KB) = 912204 Test 207 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_progcld_thompson_debug_gnu Checking test 208 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.361184 - 0: The maximum resident set size (KB) = 907332 + 0: The total amount of wall time = 141.569324 + 0: The maximum resident set size (KB) = 910128 Test 208 rap_progcld_thompson_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rrfs_v1beta_debug_gnu Checking test 209 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.443841 - 0: The maximum resident set size (KB) = 903984 + 0: The total amount of wall time = 142.874782 + 0: The maximum resident set size (KB) = 904704 Test 209 rrfs_v1beta_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_ras_debug_gnu Checking test 210 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 80.829023 - 0: The maximum resident set size (KB) = 543520 + 0: The total amount of wall time = 80.824816 + 0: The maximum resident set size (KB) = 549668 Test 210 control_ras_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_stochy_debug_gnu Checking test 211 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 125.716882 - 0: The maximum resident set size (KB) = 536964 + 0: The total amount of wall time = 124.025899 + 0: The maximum resident set size (KB) = 542224 Test 211 control_stochy_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_debug_p8_gnu Checking test 212 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 94.867473 - 0: The maximum resident set size (KB) = 1296440 + 0: The total amount of wall time = 89.288006 + 0: The maximum resident set size (KB) = 1297476 Test 212 control_debug_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_flake_debug_gnu Checking test 213 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.835172 - 0: The maximum resident set size (KB) = 910236 + 0: The total amount of wall time = 144.304680 + 0: The maximum resident set size (KB) = 921752 Test 213 rap_flake_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_clm_lake_debug_gnu Checking test 214 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.667168 - 0: The maximum resident set size (KB) = 907580 + 0: The total amount of wall time = 160.590928 + 0: The maximum resident set size (KB) = 920788 Test 214 rap_clm_lake_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/gnv1_c96_no_nest_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/gnv1_c96_no_nest_debug_gnu Checking test 215 gnv1_c96_no_nest_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7150,26 +7150,26 @@ Checking test 215 gnv1_c96_no_nest_debug_gnu results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.535232 - 0: The maximum resident set size (KB) = 918868 + 0: The total amount of wall time = 243.469808 + 0: The maximum resident set size (KB) = 917404 Test 215 gnv1_c96_no_nest_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_wam_debug_gnu Checking test 216 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 138.158297 - 0: The maximum resident set size (KB) = 238372 + 0: The total amount of wall time = 136.635475 + 0: The maximum resident set size (KB) = 239948 Test 216 control_wam_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_dyn32_phy32_gnu Checking test 217 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7216,14 +7216,14 @@ Checking test 217 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 712.306780 - 0: The maximum resident set size (KB) = 753068 + 0: The total amount of wall time = 722.993785 + 0: The maximum resident set size (KB) = 748968 Test 217 rap_control_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_dyn32_phy32_gnu Checking test 218 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7270,14 +7270,14 @@ Checking test 218 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 360.609111 - 0: The maximum resident set size (KB) = 745036 + 0: The total amount of wall time = 359.609540 + 0: The maximum resident set size (KB) = 746068 Test 218 hrrr_control_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_2threads_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_2threads_dyn32_phy32_gnu Checking test 219 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7324,14 +7324,14 @@ Checking test 219 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 645.566081 - 0: The maximum resident set size (KB) = 808872 + 0: The total amount of wall time = 632.459882 + 0: The maximum resident set size (KB) = 804272 Test 219 rap_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_2threads_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_2threads_dyn32_phy32_gnu Checking test 220 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7378,14 +7378,14 @@ Checking test 220 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 315.144560 - 0: The maximum resident set size (KB) = 810984 + 0: The total amount of wall time = 313.536683 + 0: The maximum resident set size (KB) = 800500 Test 220 hrrr_control_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_decomp_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_decomp_dyn32_phy32_gnu Checking test 221 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7432,14 +7432,14 @@ Checking test 221 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 358.601418 - 0: The maximum resident set size (KB) = 749152 + 0: The total amount of wall time = 355.715202 + 0: The maximum resident set size (KB) = 744856 Test 221 hrrr_control_decomp_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_restart_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_restart_dyn32_phy32_gnu Checking test 222 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7478,28 +7478,28 @@ Checking test 222 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 535.434834 - 0: The maximum resident set size (KB) = 600292 + 0: The total amount of wall time = 532.116378 + 0: The maximum resident set size (KB) = 593044 Test 222 rap_restart_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_restart_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_restart_dyn32_phy32_gnu Checking test 223 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 186.422770 - 0: The maximum resident set size (KB) = 580968 + 0: The total amount of wall time = 186.996793 + 0: The maximum resident set size (KB) = 581776 Test 223 hrrr_control_restart_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_control_gnu Checking test 224 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7515,40 +7515,40 @@ Checking test 224 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 246.470292 - 0: The maximum resident set size (KB) = 898728 + 0: The total amount of wall time = 242.240747 + 0: The maximum resident set size (KB) = 896332 Test 224 conus13km_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_2threads_gnu Checking test 225 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 102.609579 - 0: The maximum resident set size (KB) = 934324 + 0: The total amount of wall time = 104.257503 + 0: The maximum resident set size (KB) = 934436 Test 225 conus13km_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_restart_mismatch_gnu Checking test 226 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 129.486171 - 0: The maximum resident set size (KB) = 599476 + 0: The total amount of wall time = 130.210370 + 0: The maximum resident set size (KB) = 597772 Test 226 conus13km_restart_mismatch_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_dyn64_phy32_gnu Checking test 227 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7595,42 +7595,42 @@ Checking test 227 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 416.245505 - 0: The maximum resident set size (KB) = 783716 + 0: The total amount of wall time = 407.573782 + 0: The maximum resident set size (KB) = 787936 Test 227 rap_control_dyn64_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_debug_dyn32_phy32_gnu Checking test 228 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 143.725667 - 0: The maximum resident set size (KB) = 765232 + 0: The total amount of wall time = 141.186686 + 0: The maximum resident set size (KB) = 767728 Test 228 rap_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_debug_dyn32_phy32_gnu Checking test 229 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.702085 - 0: The maximum resident set size (KB) = 758640 + 0: The total amount of wall time = 140.454383 + 0: The maximum resident set size (KB) = 765888 Test 229 hrrr_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_debug_gnu Checking test 230 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7644,14 +7644,14 @@ Checking test 230 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 420.348607 - 0: The maximum resident set size (KB) = 917172 + 0: The total amount of wall time = 423.189489 + 0: The maximum resident set size (KB) = 917032 Test 230 conus13km_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_debug_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_debug_qr_gnu Checking test 231 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7665,56 +7665,56 @@ Checking test 231 conus13km_debug_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 418.634999 - 0: The maximum resident set size (KB) = 635016 + 0: The total amount of wall time = 422.997788 + 0: The maximum resident set size (KB) = 629648 Test 231 conus13km_debug_qr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_debug_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_debug_2threads_gnu Checking test 232 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 253.376218 - 0: The maximum resident set size (KB) = 949180 + 0: The total amount of wall time = 256.988425 + 0: The maximum resident set size (KB) = 952360 Test 232 conus13km_debug_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/conus13km_radar_tten_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_radar_tten_debug_gnu Checking test 233 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 427.949399 - 0: The maximum resident set size (KB) = 982664 + 0: The total amount of wall time = 426.294677 + 0: The maximum resident set size (KB) = 984060 Test 233 conus13km_radar_tten_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/rap_control_dyn64_phy32_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_dyn64_phy32_debug_gnu Checking test 234 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.538305 - 0: The maximum resident set size (KB) = 788672 + 0: The total amount of wall time = 146.664270 + 0: The maximum resident set size (KB) = 786756 Test 234 rap_control_dyn64_phy32_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_p8_gnu Checking test 235 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7779,14 +7779,14 @@ Checking test 235 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 659.671746 - 0: The maximum resident set size (KB) = 1503112 + 0: The total amount of wall time = 638.429251 + 0: The maximum resident set size (KB) = 1504780 Test 235 cpld_control_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_nowave_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_nowave_noaero_p8_gnu Checking test 236 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7848,14 +7848,14 @@ Checking test 236 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 390.832412 - 0: The maximum resident set size (KB) = 1403464 + 0: The total amount of wall time = 385.793258 + 0: The maximum resident set size (KB) = 1404384 Test 236 cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_debug_p8_gnu Checking test 237 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7908,14 +7908,14 @@ Checking test 237 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 364.674151 - 0: The maximum resident set size (KB) = 1513628 + 0: The total amount of wall time = 354.460625 + 0: The maximum resident set size (KB) = 1516712 Test 237 cpld_debug_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_pdlib_p8_gnu Checking test 238 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7979,14 +7979,14 @@ Checking test 238 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1323.783885 - 0: The maximum resident set size (KB) = 1374992 + 0: The total amount of wall time = 1317.508252 + 0: The maximum resident set size (KB) = 1380512 Test 238 cpld_control_pdlib_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_debug_pdlib_p8_gnu Checking test 239 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -8038,30 +8038,25 @@ Checking test 239 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 772.791319 - 0: The maximum resident set size (KB) = 1388880 + 0: The total amount of wall time = 763.107828 + 0: The maximum resident set size (KB) = 1384888 Test 239 cpld_debug_pdlib_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_18528/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_control_cfsr_gnu Checking test 240 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 170.240522 - 0: The maximum resident set size (KB) = 696524 + 0: The total amount of wall time = 174.411495 + 0: The maximum resident set size (KB) = 697080 Test 240 datm_cdeps_control_cfsr_gnu PASS -FAILED TESTS: -148 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel failed in check_result -hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel 148 failed in run_test -149 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel failed in check_result -hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel 149 failed in run_test -REGRESSION TEST FAILED -Fri Feb 2 11:19:23 UTC 2024 -Elapsed time: 16h:47m:29s. Have a nice day! +REGRESSION TEST WAS SUCCESSFUL +Sat Feb 3 09:42:23 UTC 2024 +Elapsed time: 17h:14m:00s. Have a nice day! From 005cd33ccd96ba39fcac4587eda738aa7553809c Mon Sep 17 00:00:00 2001 From: Bin Liu Date: Mon, 5 Feb 2024 14:59:10 +0000 Subject: [PATCH 58/63] Update submodule CMEPS-interface/CMEPS with bug fixes. --- CMEPS-interface/CMEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index eb87f4aec7..c9c4c23b3c 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit eb87f4aec79f5374846379eacc1da7a1b79be812 +Subproject commit c9c4c23b3c3b079dfeb62197a8b9f49c2e105ec7 From f56a40eb92c66d60de46ab6471c26be6fd9bf124 Mon Sep 17 00:00:00 2001 From: zach1221 Date: Mon, 5 Feb 2024 11:35:23 -0600 Subject: [PATCH 59/63] add hercules RT logs: passed --- tests/logs/RegressionTests_hercules.log | 58 +++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index ce4e5b8c8c..2ef3db1b71 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -7718,3 +7718,61 @@ Test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS REGRESSION TEST WAS SUCCESSFUL Fri Feb 2 09:50:52 AM CST 2024 Elapsed time: 00h:40m:07s. Have a nice day! +Mon Feb 5 10:55:10 AM CST 2024 +Start Regression test + +Testing UFSWM Hash: 005cd33ccd96ba39fcac4587eda738aa7553809c +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) + 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + c9c4c23b3c3b079dfeb62197a8b9f49c2e105ec7 CMEPS-interface/CMEPS (cmeps0.9.13-80-gc9c4c23b) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) + 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) + 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile hafs_mom6w_intel elapsed time 588 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_faster_intel elapsed time 602 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3123442/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 969.046192 + 0: The maximum resident set size (KB) = 847676 + +Test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3123442/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 632.299890 + 0: The maximum resident set size (KB) = 829264 + +Test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS + + +REGRESSION TEST WAS SUCCESSFUL +Mon Feb 5 11:26:44 AM CST 2024 +Elapsed time: 00h:31m:35s. Have a nice day! From e05bd071a6153c6eef06b157553dab2f7bc8fd55 Mon Sep 17 00:00:00 2001 From: zach1221 Date: Mon, 5 Feb 2024 11:46:28 -0600 Subject: [PATCH 60/63] add orion RT logs: passed --- tests/logs/RegressionTests_orion.log | 58 ++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 87160f27ee..7add30c7a4 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -6045,3 +6045,61 @@ Test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS REGRESSION TEST WAS SUCCESSFUL Fri Feb 2 09:37:47 CST 2024 Elapsed time: 00h:27m:25s. Have a nice day! +Mon Feb 5 10:54:15 CST 2024 +Start Regression test + +Testing UFSWM Hash: 005cd33ccd96ba39fcac4587eda738aa7553809c +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) + 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + c9c4c23b3c3b079dfeb62197a8b9f49c2e105ec7 CMEPS-interface/CMEPS (cmeps0.9.13-80-gc9c4c23b) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) + 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) + 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile hafs_mom6w_intel elapsed time 793 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_faster_intel elapsed time 854 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_267683/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 574.416959 + 0: The maximum resident set size (KB) = 751768 + +Test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_267683/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 418.021390 + 0: The maximum resident set size (KB) = 726436 + +Test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS + + +REGRESSION TEST WAS SUCCESSFUL +Mon Feb 5 11:23:29 CST 2024 +Elapsed time: 00h:29m:16s. Have a nice day! From d74b8ec779548c3cc5c39a95eb401ac8dbbe7e41 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Mon, 5 Feb 2024 17:51:55 +0000 Subject: [PATCH 61/63] WCOSS2 RT Log --- tests/logs/RegressionTests_wcoss2.log | 1169 +++++++++++++------------ 1 file changed, 624 insertions(+), 545 deletions(-) diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 329af578a8..4a15cb7f33 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,12 +1,12 @@ -Fri Feb 2 14:52:50 UTC 2024 +Mon Feb 5 16:07:22 UTC 2024 Start Regression test -Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 +Testing UFSWM Hash: 005cd33ccd96ba39fcac4587eda738aa7553809c Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) ++eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) @@ -15,40 +15,40 @@ Testing With Submodule Hashes: 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 522 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 478 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 602 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 1591 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 1987 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 692 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 583 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 1925 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 1225 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 1299 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 777 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 684 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 1190 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 929 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 893 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 817 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 591 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 848 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 1357 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 945 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 1209 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 855 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 952 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 685 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 2049 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 647 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 2042 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 888 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 660 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 1066 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 519 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 881 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 646 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 751 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 275 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 987 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 801 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 1095 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 674 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 573 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 1000 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 404 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 960 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 582 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 860 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 772 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 772 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 742 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 1235 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 655 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 2480 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1924 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1303 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 258 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 717 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1321 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 663 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 636 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 1665 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 984 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 378 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -113,14 +113,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 324.850250 -The maximum resident set size (KB) = 2975356 +The total amount of wall time = 324.531120 +The maximum resident set size (KB) = 2975832 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -184,14 +184,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 912.379039 -The maximum resident set size (KB) = 1597888 +The total amount of wall time = 920.432397 +The maximum resident set size (KB) = 1585660 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_gfsv17_iau_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -237,14 +237,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK -The total amount of wall time = 985.243331 -The maximum resident set size (KB) = 1709500 +The total amount of wall time = 973.324188 +The maximum resident set size (KB) = 1715464 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_restart_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -297,14 +297,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 456.988684 -The maximum resident set size (KB) = 847148 +The total amount of wall time = 455.931854 +The maximum resident set size (KB) = 848976 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_mpi_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -368,14 +368,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1061.046801 -The maximum resident set size (KB) = 1566132 +The total amount of wall time = 1069.396702 +The maximum resident set size (KB) = 1569336 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_debug_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -427,14 +427,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1378.059478 -The maximum resident set size (KB) = 1605044 +The total amount of wall time = 1402.962355 +The maximum resident set size (KB) = 1606776 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -499,14 +499,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 365.297021 -The maximum resident set size (KB) = 3003056 +The total amount of wall time = 367.435897 +The maximum resident set size (KB) = 3001572 Test 007 cpld_control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -559,14 +559,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 214.800326 -The maximum resident set size (KB) = 3062980 +The total amount of wall time = 217.728306 +The maximum resident set size (KB) = 3061588 Test 008 cpld_restart_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -631,14 +631,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 368.417233 -The maximum resident set size (KB) = 3026936 +The total amount of wall time = 369.622916 +The maximum resident set size (KB) = 3026808 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_restart_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -691,14 +691,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 221.402393 -The maximum resident set size (KB) = 3082140 +The total amount of wall time = 220.554849 +The maximum resident set size (KB) = 3080264 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -751,14 +751,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 326.065685 -The maximum resident set size (KB) = 3314956 +The total amount of wall time = 328.454132 +The maximum resident set size (KB) = 3316180 Test 011 cpld_2threads_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -811,14 +811,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 360.952796 -The maximum resident set size (KB) = 2998896 +The total amount of wall time = 365.313035 +The maximum resident set size (KB) = 3002192 Test 012 cpld_decomp_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_mpi_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -871,14 +871,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 303.952062 -The maximum resident set size (KB) = 2930384 +The total amount of wall time = 306.564132 +The maximum resident set size (KB) = 2926876 Test 013 cpld_mpi_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -943,14 +943,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 364.716914 -The maximum resident set size (KB) = 3000748 +The total amount of wall time = 371.473340 +The maximum resident set size (KB) = 3002648 Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_bmark_p8_intel Checking test 015 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -998,14 +998,14 @@ Checking test 015 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 742.274248 -The maximum resident set size (KB) = 3951876 +The total amount of wall time = 768.743799 +The maximum resident set size (KB) = 3949748 Test 015 cpld_bmark_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_restart_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_restart_bmark_p8_intel Checking test 016 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1053,14 +1053,14 @@ Checking test 016 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 538.171329 -The maximum resident set size (KB) = 4252096 +The total amount of wall time = 520.684958 +The maximum resident set size (KB) = 4254932 Test 016 cpld_restart_bmark_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_s2sa_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_s2sa_p8_intel Checking test 017 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1111,14 +1111,14 @@ Checking test 017 cpld_s2sa_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 344.615868 -The maximum resident set size (KB) = 2967804 +The total amount of wall time = 348.368067 +The maximum resident set size (KB) = 2967884 Test 017 cpld_s2sa_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_noaero_p8_intel Checking test 018 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1182,14 +1182,14 @@ Checking test 018 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 276.368922 -The maximum resident set size (KB) = 1587680 +The total amount of wall time = 274.274643 +The maximum resident set size (KB) = 1586468 Test 018 cpld_control_noaero_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_nowave_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_nowave_noaero_p8_intel Checking test 019 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1251,14 +1251,14 @@ Checking test 019 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 282.041096 -The maximum resident set size (KB) = 1632768 +The total amount of wall time = 280.304986 +The maximum resident set size (KB) = 1638168 Test 019 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_noaero_p8_agrid_intel Checking test 020 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1320,14 +1320,14 @@ Checking test 020 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 276.711443 -The maximum resident set size (KB) = 1639640 +The total amount of wall time = 274.602689 +The maximum resident set size (KB) = 1631304 Test 020 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_c48_intel Checking test 021 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1377,14 +1377,14 @@ Checking test 021 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 406.393301 -The maximum resident set size (KB) = 2642836 +The total amount of wall time = 406.995202 +The maximum resident set size (KB) = 2652852 Test 021 cpld_control_c48_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_p8_faster_intel Checking test 022 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1449,14 +1449,14 @@ Checking test 022 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 367.975397 -The maximum resident set size (KB) = 3001504 +The total amount of wall time = 356.723515 +The maximum resident set size (KB) = 3007744 Test 022 cpld_control_p8_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_pdlib_p8_intel Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1520,14 +1520,14 @@ Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 923.558766 -The maximum resident set size (KB) = 1598108 +The total amount of wall time = 945.265745 +The maximum resident set size (KB) = 1597352 Test 023 cpld_control_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_restart_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_restart_pdlib_p8_intel Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1579,14 +1579,14 @@ Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 463.507514 -The maximum resident set size (KB) = 895780 +The total amount of wall time = 457.259131 +The maximum resident set size (KB) = 899448 Test 024 cpld_restart_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_mpi_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_mpi_pdlib_p8_intel Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1650,14 +1650,14 @@ Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1071.742843 -The maximum resident set size (KB) = 1579496 +The total amount of wall time = 1070.053788 +The maximum resident set size (KB) = 1573160 Test 025 cpld_mpi_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_debug_pdlib_p8_intel Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1709,14 +1709,14 @@ Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1491.574286 -The maximum resident set size (KB) = 1618936 +The total amount of wall time = 1483.886447 +The maximum resident set size (KB) = 1616296 Test 026 cpld_debug_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_flake_intel Checking test 027 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1727,14 +1727,14 @@ Checking test 027 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 214.222515 -The maximum resident set size (KB) = 572544 +The total amount of wall time = 212.739480 +The maximum resident set size (KB) = 577216 Test 027 control_flake_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_CubedSphereGrid_intel Checking test 028 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1761,14 +1761,14 @@ Checking test 028 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 131.391796 -The maximum resident set size (KB) = 523780 +The total amount of wall time = 130.493146 +The maximum resident set size (KB) = 523340 Test 028 control_CubedSphereGrid_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_CubedSphereGrid_parallel_intel Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1783,14 +1783,14 @@ Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.916394 -The maximum resident set size (KB) = 525976 +The total amount of wall time = 136.971074 +The maximum resident set size (KB) = 527072 Test 029 control_CubedSphereGrid_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_latlon_intel Checking test 030 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1801,14 +1801,14 @@ Checking test 030 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.279314 -The maximum resident set size (KB) = 525972 +The total amount of wall time = 132.160319 +The maximum resident set size (KB) = 525568 Test 030 control_latlon_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_wrtGauss_netcdf_parallel_intel Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1819,14 +1819,14 @@ Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.509591 -The maximum resident set size (KB) = 523108 +The total amount of wall time = 135.306465 +The maximum resident set size (KB) = 523124 Test 031 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_c48_intel Checking test 032 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1865,14 +1865,14 @@ Checking test 032 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 331.306415 -The maximum resident set size (KB) = 719120 +The total amount of wall time = 333.559212 +The maximum resident set size (KB) = 715244 Test 032 control_c48_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_c192_intel Checking test 033 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1883,14 +1883,14 @@ Checking test 033 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 531.747266 -The maximum resident set size (KB) = 637892 +The total amount of wall time = 531.142068 +The maximum resident set size (KB) = 638316 Test 033 control_c192_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_c384_intel Checking test 034 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1901,14 +1901,14 @@ Checking test 034 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 663.650186 -The maximum resident set size (KB) = 953108 +The total amount of wall time = 580.192842 +The maximum resident set size (KB) = 956628 Test 034 control_c384_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_c384gdas_intel Checking test 035 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1951,14 +1951,14 @@ Checking test 035 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 616.432227 -The maximum resident set size (KB) = 1091800 +The total amount of wall time = 513.190043 +The maximum resident set size (KB) = 1093284 Test 035 control_c384gdas_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_stochy_intel Checking test 036 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1969,28 +1969,28 @@ Checking test 036 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.690104 -The maximum resident set size (KB) = 531140 +The total amount of wall time = 88.059489 +The maximum resident set size (KB) = 532384 Test 036 control_stochy_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_stochy_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_stochy_restart_intel Checking test 037 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.559091 -The maximum resident set size (KB) = 331420 +The total amount of wall time = 49.076882 +The maximum resident set size (KB) = 330860 Test 037 control_stochy_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_lndp_intel Checking test 038 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2001,14 +2001,14 @@ Checking test 038 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 84.309769 -The maximum resident set size (KB) = 527364 +The total amount of wall time = 83.033124 +The maximum resident set size (KB) = 532064 Test 038 control_lndp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_iovr4_intel Checking test 039 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2023,14 +2023,14 @@ Checking test 039 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.412380 -The maximum resident set size (KB) = 522564 +The total amount of wall time = 132.536992 +The maximum resident set size (KB) = 522024 Test 039 control_iovr4_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_iovr5_intel Checking test 040 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2045,14 +2045,14 @@ Checking test 040 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.377632 -The maximum resident set size (KB) = 521272 +The total amount of wall time = 133.281043 +The maximum resident set size (KB) = 524716 Test 040 control_iovr5_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_intel Checking test 041 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2099,14 +2099,14 @@ Checking test 041 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 165.244287 -The maximum resident set size (KB) = 1500888 +The total amount of wall time = 164.709643 +The maximum resident set size (KB) = 1506200 Test 041 control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_p8_ugwpv1_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_ugwpv1_intel Checking test 042 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2153,14 +2153,14 @@ Checking test 042 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 161.705804 -The maximum resident set size (KB) = 1508052 +The total amount of wall time = 161.959802 +The maximum resident set size (KB) = 1496736 Test 042 control_p8_ugwpv1_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_restart_p8_intel Checking test 043 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2199,14 +2199,14 @@ Checking test 043 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 93.541245 -The maximum resident set size (KB) = 690292 +The total amount of wall time = 89.329328 +The maximum resident set size (KB) = 695132 Test 043 control_restart_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_noqr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_noqr_p8_intel Checking test 044 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2253,14 +2253,14 @@ Checking test 044 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 164.031126 -The maximum resident set size (KB) = 1489908 +The total amount of wall time = 166.190133 +The maximum resident set size (KB) = 1489644 Test 044 control_noqr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_restart_noqr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_restart_noqr_p8_intel Checking test 045 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2299,14 +2299,14 @@ Checking test 045 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 92.365104 -The maximum resident set size (KB) = 698096 +The total amount of wall time = 87.827060 +The maximum resident set size (KB) = 697692 Test 045 control_restart_noqr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_decomp_p8_intel Checking test 046 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2349,14 +2349,14 @@ Checking test 046 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 169.907861 -The maximum resident set size (KB) = 1497292 +The total amount of wall time = 168.582876 +The maximum resident set size (KB) = 1499680 Test 046 control_decomp_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_2threads_p8_intel Checking test 047 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2399,14 +2399,14 @@ Checking test 047 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 143.066824 -The maximum resident set size (KB) = 1589784 +The total amount of wall time = 143.196509 +The maximum resident set size (KB) = 1592128 Test 047 control_2threads_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_lndp_intel Checking test 048 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2425,14 +2425,14 @@ Checking test 048 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 294.242694 -The maximum resident set size (KB) = 1512144 +The total amount of wall time = 294.485642 +The maximum resident set size (KB) = 1511100 Test 048 control_p8_lndp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_rrtmgp_intel Checking test 049 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2479,14 +2479,14 @@ Checking test 049 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 219.801910 -The maximum resident set size (KB) = 1555936 +The total amount of wall time = 220.833191 +The maximum resident set size (KB) = 1552416 Test 049 control_p8_rrtmgp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_mynn_intel Checking test 050 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2533,14 +2533,14 @@ Checking test 050 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 169.968776 -The maximum resident set size (KB) = 1510424 +The total amount of wall time = 170.471675 +The maximum resident set size (KB) = 1507612 Test 050 control_p8_mynn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/merra2_thompson_intel Checking test 051 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2587,14 +2587,14 @@ Checking test 051 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 201.702826 -The maximum resident set size (KB) = 1507992 +The total amount of wall time = 199.283476 +The maximum resident set size (KB) = 1510912 Test 051 merra2_thompson_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_control_intel Checking test 052 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2605,28 +2605,28 @@ Checking test 052 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 290.435316 -The maximum resident set size (KB) = 608076 +The total amount of wall time = 288.582760 +The maximum resident set size (KB) = 606580 Test 052 regional_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_restart_intel Checking test 053 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 183.137747 -The maximum resident set size (KB) = 781716 +The total amount of wall time = 155.745832 +The maximum resident set size (KB) = 778412 Test 053 regional_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2637,14 +2637,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 314.580327 -The maximum resident set size (KB) = 606356 +The total amount of wall time = 304.228303 +The maximum resident set size (KB) = 606120 Test 054 regional_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2655,14 +2655,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 175.228403 -The maximum resident set size (KB) = 664992 +The total amount of wall time = 174.474582 +The maximum resident set size (KB) = 661500 Test 055 regional_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2670,28 +2670,28 @@ Checking test 056 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 285.127278 -The maximum resident set size (KB) = 1147180 +The total amount of wall time = 289.664966 +The maximum resident set size (KB) = 1143328 Test 056 regional_noquilt_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 285.519464 -The maximum resident set size (KB) = 607816 +The total amount of wall time = 288.424861 +The maximum resident set size (KB) = 606996 Test 057 regional_netcdf_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_2dwrtdecomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2702,14 +2702,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 304.245603 -The maximum resident set size (KB) = 606184 +The total amount of wall time = 286.973982 +The maximum resident set size (KB) = 606532 Test 058 regional_2dwrtdecomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2720,14 +2720,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 408.260214 -The maximum resident set size (KB) = 1581148 +The total amount of wall time = 379.950826 +The maximum resident set size (KB) = 1577728 Test 059 regional_wofs_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2774,14 +2774,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 416.008682 -The maximum resident set size (KB) = 914848 +The total amount of wall time = 406.201296 +The maximum resident set size (KB) = 919068 Test 060 rap_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2792,14 +2792,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 242.320482 -The maximum resident set size (KB) = 1091424 +The total amount of wall time = 237.505090 +The maximum resident set size (KB) = 1092060 Test 061 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2846,14 +2846,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 434.322378 -The maximum resident set size (KB) = 916328 +The total amount of wall time = 421.852131 +The maximum resident set size (KB) = 918852 Test 062 rap_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 379.396689 -The maximum resident set size (KB) = 1006244 +The total amount of wall time = 368.891787 +The maximum resident set size (KB) = 1012080 Test 063 rap_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2946,14 +2946,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 210.029682 -The maximum resident set size (KB) = 788104 +The total amount of wall time = 208.562685 +The maximum resident set size (KB) = 784396 Test 064 rap_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3000,14 +3000,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 415.714708 -The maximum resident set size (KB) = 913448 +The total amount of wall time = 404.366350 +The maximum resident set size (KB) = 910340 Test 065 rap_sfcdiff_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_sfcdiff_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3054,14 +3054,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 430.016914 -The maximum resident set size (KB) = 915276 +The total amount of wall time = 421.837315 +The maximum resident set size (KB) = 911400 Test 066 rap_sfcdiff_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_sfcdiff_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3100,14 +3100,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 303.680783 -The maximum resident set size (KB) = 784776 +The total amount of wall time = 303.213651 +The maximum resident set size (KB) = 783836 Test 067 rap_sfcdiff_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3154,14 +3154,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 216.302057 -The maximum resident set size (KB) = 908064 +The total amount of wall time = 206.895673 +The maximum resident set size (KB) = 907236 Test 068 hrrr_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_control_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_decomp_intel Checking test 069 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3208,14 +3208,14 @@ Checking test 069 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 213.288395 -The maximum resident set size (KB) = 906992 +The total amount of wall time = 212.040487 +The maximum resident set size (KB) = 906928 Test 069 hrrr_control_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_control_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_2threads_intel Checking test 070 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3262,28 +3262,28 @@ Checking test 070 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 197.248832 -The maximum resident set size (KB) = 993320 +The total amount of wall time = 184.370333 +The maximum resident set size (KB) = 991688 Test 070 hrrr_control_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_control_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_restart_intel Checking test 071 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 108.925705 -The maximum resident set size (KB) = 741132 +The total amount of wall time = 109.149755 +The maximum resident set size (KB) = 741740 Test 071 hrrr_control_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rrfs_v1beta_intel Checking test 072 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3330,14 +3330,14 @@ Checking test 072 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 405.453484 -The maximum resident set size (KB) = 910252 +The total amount of wall time = 395.981669 +The maximum resident set size (KB) = 911496 Test 072 rrfs_v1beta_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rrfs_v1nssl_intel Checking test 073 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3352,14 +3352,14 @@ Checking test 073 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 490.545057 -The maximum resident set size (KB) = 1874656 +The total amount of wall time = 487.387565 +The maximum resident set size (KB) = 1876984 Test 073 rrfs_v1nssl_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rrfs_v1nssl_nohailnoccn_intel Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3374,14 +3374,14 @@ Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 474.206781 -The maximum resident set size (KB) = 1857484 +The total amount of wall time = 470.299762 +The maximum resident set size (KB) = 1860748 Test 074 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_csawmg_intel Checking test 075 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3392,14 +3392,14 @@ Checking test 075 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 335.859935 -The maximum resident set size (KB) = 596600 +The total amount of wall time = 336.332951 +The maximum resident set size (KB) = 600148 Test 075 control_csawmg_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_csawmgt_intel Checking test 076 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3410,14 +3410,14 @@ Checking test 076 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 348.766568 -The maximum resident set size (KB) = 598772 +The total amount of wall time = 337.610265 +The maximum resident set size (KB) = 595504 Test 076 control_csawmgt_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_ras_intel Checking test 077 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3428,26 +3428,26 @@ Checking test 077 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 183.120542 -The maximum resident set size (KB) = 561648 +The total amount of wall time = 183.522390 +The maximum resident set size (KB) = 562056 Test 077 control_ras_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_wam_intel Checking test 078 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.765160 -The maximum resident set size (KB) = 271112 +The total amount of wall time = 119.125073 +The maximum resident set size (KB) = 272952 Test 078 control_wam_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_faster_intel Checking test 079 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3494,14 +3494,14 @@ Checking test 079 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 160.034376 -The maximum resident set size (KB) = 1513584 +The total amount of wall time = 158.897364 +The maximum resident set size (KB) = 1515500 Test 079 control_p8_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_control_faster_intel Checking test 080 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3512,14 +3512,14 @@ Checking test 080 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 280.039436 -The maximum resident set size (KB) = 610332 +The total amount of wall time = 278.367088 +The maximum resident set size (KB) = 610868 Test 080 regional_control_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_CubedSphereGrid_debug_intel Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3546,364 +3546,364 @@ Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.194622 -The maximum resident set size (KB) = 681960 +The total amount of wall time = 159.307595 +The maximum resident set size (KB) = 684092 Test 081 control_CubedSphereGrid_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_wrtGauss_netcdf_parallel_debug_intel Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 158.577592 -The maximum resident set size (KB) = 690744 +The total amount of wall time = 157.225124 +The maximum resident set size (KB) = 688684 Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_stochy_debug_intel Checking test 083 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.043462 -The maximum resident set size (KB) = 690520 +The total amount of wall time = 178.523581 +The maximum resident set size (KB) = 687552 Test 083 control_stochy_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_lndp_debug_intel Checking test 084 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.171692 -The maximum resident set size (KB) = 692412 +The total amount of wall time = 161.454490 +The maximum resident set size (KB) = 692740 Test 084 control_lndp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_csawmg_debug_intel Checking test 085 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 251.270856 -The maximum resident set size (KB) = 731036 +The total amount of wall time = 251.645733 +The maximum resident set size (KB) = 730760 Test 085 control_csawmg_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_csawmgt_debug_intel Checking test 086 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 246.127431 -The maximum resident set size (KB) = 730232 +The total amount of wall time = 247.237055 +The maximum resident set size (KB) = 731308 Test 086 control_csawmgt_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_ras_debug_intel Checking test 087 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.124758 -The maximum resident set size (KB) = 699380 +The total amount of wall time = 162.745336 +The maximum resident set size (KB) = 702880 Test 087 control_ras_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_diag_debug_intel Checking test 088 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.531381 -The maximum resident set size (KB) = 746008 +The total amount of wall time = 163.175829 +The maximum resident set size (KB) = 745480 Test 088 control_diag_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_debug_p8_intel Checking test 089 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.487537 -The maximum resident set size (KB) = 1525760 +The total amount of wall time = 166.738007 +The maximum resident set size (KB) = 1519212 Test 089 control_debug_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_debug_intel Checking test 090 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1054.572030 -The maximum resident set size (KB) = 633864 +The total amount of wall time = 1050.898220 +The maximum resident set size (KB) = 631156 Test 090 regional_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_control_debug_intel Checking test 091 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.057020 -The maximum resident set size (KB) = 1077380 +The total amount of wall time = 298.930615 +The maximum resident set size (KB) = 1073204 Test 091 rap_control_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_debug_intel Checking test 092 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.195196 -The maximum resident set size (KB) = 1066368 +The total amount of wall time = 291.395457 +The maximum resident set size (KB) = 1066920 Test 092 hrrr_control_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_gf_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_gf_debug_intel Checking test 093 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.882089 -The maximum resident set size (KB) = 1075032 +The total amount of wall time = 298.771736 +The maximum resident set size (KB) = 1071292 Test 093 hrrr_gf_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_c3_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_c3_debug_intel Checking test 094 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.560233 -The maximum resident set size (KB) = 1070880 +The total amount of wall time = 301.330531 +The maximum resident set size (KB) = 1070692 Test 094 hrrr_c3_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_unified_drag_suite_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_unified_drag_suite_debug_intel Checking test 095 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.845762 -The maximum resident set size (KB) = 1075936 +The total amount of wall time = 299.274538 +The maximum resident set size (KB) = 1077480 Test 095 rap_unified_drag_suite_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_diag_debug_intel Checking test 096 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 310.553632 -The maximum resident set size (KB) = 1155580 +The total amount of wall time = 309.657542 +The maximum resident set size (KB) = 1160732 Test 096 rap_diag_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_cires_ugwp_debug_intel Checking test 097 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.756721 -The maximum resident set size (KB) = 1076188 +The total amount of wall time = 305.079269 +The maximum resident set size (KB) = 1076312 Test 097 rap_cires_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_unified_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_unified_ugwp_debug_intel Checking test 098 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.651692 -The maximum resident set size (KB) = 1076520 +The total amount of wall time = 305.845273 +The maximum resident set size (KB) = 1074432 Test 098 rap_unified_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_lndp_debug_intel Checking test 099 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.580502 -The maximum resident set size (KB) = 1078080 +The total amount of wall time = 301.152046 +The maximum resident set size (KB) = 1078748 Test 099 rap_lndp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_progcld_thompson_debug_intel Checking test 100 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.438383 -The maximum resident set size (KB) = 1076280 +The total amount of wall time = 300.216265 +The maximum resident set size (KB) = 1073368 Test 100 rap_progcld_thompson_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_noah_debug_intel Checking test 101 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.218348 -The maximum resident set size (KB) = 1074540 +The total amount of wall time = 293.228902 +The maximum resident set size (KB) = 1073772 Test 101 rap_noah_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_sfcdiff_debug_intel Checking test 102 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.913318 -The maximum resident set size (KB) = 1073700 +The total amount of wall time = 299.705212 +The maximum resident set size (KB) = 1072312 Test 102 rap_sfcdiff_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 498.111337 -The maximum resident set size (KB) = 1075024 +The total amount of wall time = 488.357145 +The maximum resident set size (KB) = 1075784 Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rrfs_v1beta_debug_intel Checking test 104 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.668738 -The maximum resident set size (KB) = 1069884 +The total amount of wall time = 293.997889 +The maximum resident set size (KB) = 1068416 Test 104 rrfs_v1beta_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_clm_lake_debug_intel Checking test 105 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 353.748975 -The maximum resident set size (KB) = 1074208 +The total amount of wall time = 349.048860 +The maximum resident set size (KB) = 1074340 Test 105 rap_clm_lake_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_flake_debug_intel Checking test 106 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.169036 -The maximum resident set size (KB) = 1076768 +The total amount of wall time = 299.340182 +The maximum resident set size (KB) = 1077224 Test 106 rap_flake_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/gnv1_c96_no_nest_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/gnv1_c96_no_nest_debug_intel Checking test 107 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3944,26 +3944,26 @@ Checking test 107 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 523.838046 -The maximum resident set size (KB) = 1077860 +The total amount of wall time = 520.242913 +The maximum resident set size (KB) = 1080840 Test 107 gnv1_c96_no_nest_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_wam_debug_intel Checking test 108 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 300.895246 -The maximum resident set size (KB) = 299612 +The total amount of wall time = 299.991489 +The maximum resident set size (KB) = 300996 Test 108 control_wam_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3974,14 +3974,14 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 228.588819 -The maximum resident set size (KB) = 953200 +The total amount of wall time = 227.332747 +The maximum resident set size (KB) = 956524 Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_control_dyn32_phy32_intel Checking test 110 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4028,14 +4028,14 @@ Checking test 110 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 338.040333 -The maximum resident set size (KB) = 788020 +The total amount of wall time = 334.676524 +The maximum resident set size (KB) = 791828 Test 110 rap_control_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_dyn32_phy32_intel Checking test 111 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4082,14 +4082,14 @@ Checking test 111 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 178.997344 -The maximum resident set size (KB) = 785520 +The total amount of wall time = 176.551392 +The maximum resident set size (KB) = 787428 Test 111 hrrr_control_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_2threads_dyn32_phy32_intel Checking test 112 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4136,14 +4136,14 @@ Checking test 112 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 307.540252 -The maximum resident set size (KB) = 853872 +The total amount of wall time = 305.771117 +The maximum resident set size (KB) = 852816 Test 112 rap_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_2threads_dyn32_phy32_intel Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4190,14 +4190,14 @@ Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 159.715358 -The maximum resident set size (KB) = 844576 +The total amount of wall time = 158.676030 +The maximum resident set size (KB) = 838136 Test 113 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_decomp_dyn32_phy32_intel Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4244,14 +4244,14 @@ Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 187.250807 -The maximum resident set size (KB) = 789768 +The total amount of wall time = 183.629075 +The maximum resident set size (KB) = 788732 Test 114 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_restart_dyn32_phy32_intel Checking test 115 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4290,28 +4290,28 @@ Checking test 115 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 251.806011 -The maximum resident set size (KB) = 685964 +The total amount of wall time = 255.912089 +The maximum resident set size (KB) = 688512 Test 115 rap_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_control_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_restart_dyn32_phy32_intel Checking test 116 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.573614 -The maximum resident set size (KB) = 667404 +The total amount of wall time = 92.752287 +The maximum resident set size (KB) = 666736 Test 116 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/conus13km_control_intel Checking test 117 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4327,40 +4327,40 @@ Checking test 117 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 122.765424 -The maximum resident set size (KB) = 1006656 +The total amount of wall time = 115.843466 +The maximum resident set size (KB) = 1004228 Test 117 conus13km_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/conus13km_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/conus13km_2threads_intel Checking test 118 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 59.104194 -The maximum resident set size (KB) = 1005000 +The total amount of wall time = 56.767403 +The maximum resident set size (KB) = 1006864 Test 118 conus13km_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/conus13km_restart_mismatch_intel Checking test 119 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 68.893818 -The maximum resident set size (KB) = 879364 +The total amount of wall time = 68.721775 +The maximum resident set size (KB) = 881900 Test 119 conus13km_restart_mismatch_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_control_dyn64_phy32_intel Checking test 120 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4407,42 +4407,42 @@ Checking test 120 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 231.926496 -The maximum resident set size (KB) = 808620 +The total amount of wall time = 228.930174 +The maximum resident set size (KB) = 810388 Test 120 rap_control_dyn64_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_control_debug_dyn32_phy32_intel Checking test 121 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.821631 -The maximum resident set size (KB) = 952008 +The total amount of wall time = 291.269752 +The maximum resident set size (KB) = 955036 Test 121 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_debug_dyn32_phy32_intel Checking test 122 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.069849 -The maximum resident set size (KB) = 950812 +The total amount of wall time = 284.224786 +The maximum resident set size (KB) = 949900 Test 122 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/conus13km_debug_intel Checking test 123 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4456,14 +4456,14 @@ Checking test 123 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 890.305656 -The maximum resident set size (KB) = 1034408 +The total amount of wall time = 881.116654 +The maximum resident set size (KB) = 1034364 Test 123 conus13km_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/conus13km_debug_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/conus13km_debug_qr_intel Checking test 124 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4477,81 +4477,81 @@ Checking test 124 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 898.941057 -The maximum resident set size (KB) = 708580 +The total amount of wall time = 888.680290 +The maximum resident set size (KB) = 708944 Test 124 conus13km_debug_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/conus13km_debug_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/conus13km_debug_2threads_intel Checking test 125 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 516.264166 -The maximum resident set size (KB) = 1038840 +The total amount of wall time = 506.045127 +The maximum resident set size (KB) = 1036624 Test 125 conus13km_debug_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/conus13km_radar_tten_debug_intel Checking test 126 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 901.843787 -The maximum resident set size (KB) = 1102492 +The total amount of wall time = 889.250940 +The maximum resident set size (KB) = 1098100 Test 126 conus13km_radar_tten_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/rap_control_dyn64_phy32_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_control_dyn64_phy32_debug_intel Checking test 127 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.489519 -The maximum resident set size (KB) = 979540 +The total amount of wall time = 296.226676 +The maximum resident set size (KB) = 980808 Test 127 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_atm_intel Checking test 128 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 382.483831 -The maximum resident set size (KB) = 615452 +The total amount of wall time = 339.341882 +The maximum resident set size (KB) = 617048 Test 128 hafs_regional_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_atm_thompson_gfdlsf_intel Checking test 129 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 411.342906 -The maximum resident set size (KB) = 966924 +The total amount of wall time = 312.115118 +The maximum resident set size (KB) = 970992 Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_atm_ocn_intel Checking test 130 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4560,14 +4560,14 @@ Checking test 130 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 474.550084 -The maximum resident set size (KB) = 665108 +The total amount of wall time = 418.317307 +The maximum resident set size (KB) = 664064 Test 130 hafs_regional_atm_ocn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_atm_wav_intel Checking test 131 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4576,14 +4576,14 @@ Checking test 131 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 796.441941 -The maximum resident set size (KB) = 688364 +The total amount of wall time = 736.308195 +The maximum resident set size (KB) = 691680 Test 131 hafs_regional_atm_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_atm_ocn_wav_intel Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4594,14 +4594,14 @@ Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 981.136828 -The maximum resident set size (KB) = 702240 +The total amount of wall time = 928.951865 +The maximum resident set size (KB) = 704136 Test 132 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_1nest_atm_intel Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4623,14 +4623,14 @@ Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 327.076169 -The maximum resident set size (KB) = 390340 +The total amount of wall time = 318.175712 +The maximum resident set size (KB) = 390872 Test 133 hafs_regional_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_telescopic_2nests_atm_intel Checking test 134 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4639,14 +4639,14 @@ Checking test 134 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 415.723332 -The maximum resident set size (KB) = 404572 +The total amount of wall time = 404.594728 +The maximum resident set size (KB) = 405600 Test 134 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_global_1nest_atm_intel Checking test 135 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4693,14 +4693,14 @@ Checking test 135 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 188.437350 -The maximum resident set size (KB) = 280748 +The total amount of wall time = 170.923854 +The maximum resident set size (KB) = 285956 Test 135 hafs_global_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_global_multiple_4nests_atm_intel Checking test 136 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4782,14 +4782,14 @@ Checking test 136 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 517.891375 -The maximum resident set size (KB) = 372928 +The total amount of wall time = 486.827132 +The maximum resident set size (KB) = 372212 Test 136 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_specified_moving_1nest_atm_intel Checking test 137 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4798,14 +4798,14 @@ Checking test 137 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 238.965361 -The maximum resident set size (KB) = 413528 +The total amount of wall time = 225.810505 +The maximum resident set size (KB) = 415816 Test 137 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_storm_following_1nest_atm_intel Checking test 138 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4827,14 +4827,14 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 227.399850 -The maximum resident set size (KB) = 415808 +The total amount of wall time = 210.271454 +The maximum resident set size (KB) = 412356 Test 138 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4843,96 +4843,96 @@ Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 300.931621 -The maximum resident set size (KB) = 493796 +The total amount of wall time = 263.960036 +The maximum resident set size (KB) = 497732 Test 139 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_global_storm_following_1nest_atm_intel Checking test 140 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 122.233280 -The maximum resident set size (KB) = 313896 +The total amount of wall time = 92.326270 +The maximum resident set size (KB) = 311016 Test 140 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/gnv1_nested_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/gnv1_nested_intel Checking test 141 gnv1_nested_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......NOT OK + Comparing sfcf006.nc ............ALT CHECK......NOT OK + Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......NOT OK Comparing RESTART/20200825.180000.coupler.res .........OK Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 254.964630 -The maximum resident set size (KB) = 679160 - -Test 141 gnv1_nested_intel PASS Tries: 2 + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK + +The total amount of wall time = 240.946793 +The maximum resident set size (KB) = 673928 + +Test 141 gnv1_nested_intel FAIL Tries: 2 baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 832.498349 -The maximum resident set size (KB) = 499816 +The total amount of wall time = 820.727904 +The maximum resident set size (KB) = 500736 Test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4943,14 +4943,14 @@ 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 = 541.800697 -The maximum resident set size (KB) = 525964 +The total amount of wall time = 523.263300 +The maximum resident set size (KB) = 535496 Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4961,14 +4961,14 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 547.599934 -The maximum resident set size (KB) = 717632 +The total amount of wall time = 523.704740 +The maximum resident set size (KB) = 709988 Test 144 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -4978,14 +4978,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK -The total amount of wall time = 402.036392 -The maximum resident set size (KB) = 734892 +The total amount of wall time = 386.995791 +The maximum resident set size (KB) = 729736 Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_docn_intel Checking test 146 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4993,14 +4993,14 @@ Checking test 146 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 424.115242 -The maximum resident set size (KB) = 656172 +The total amount of wall time = 388.195384 +The maximum resident set size (KB) = 652408 Test 146 hafs_regional_docn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_docn_oisst_intel Checking test 147 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5008,27 +5008,27 @@ Checking test 147 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 416.196673 -The maximum resident set size (KB) = 642224 +The total amount of wall time = 389.395813 +The maximum resident set size (KB) = 640260 Test 147 hafs_regional_docn_oisst_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_datm_cdeps_intel Checking test 148 hafs_regional_datm_cdeps_intel results .... 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 = 954.814343 -The maximum resident set size (KB) = 880476 +The total amount of wall time = 946.433480 +The maximum resident set size (KB) = 881108 Test 148 hafs_regional_datm_cdeps_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_atmlnd_sbs_intel Checking test 149 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5117,14 +5117,14 @@ Checking test 149 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 287.580223 -The maximum resident set size (KB) = 1548820 +The total amount of wall time = 275.283497 +The maximum resident set size (KB) = 1547052 Test 149 control_p8_atmlnd_sbs_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_p8_atmlnd_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_atmlnd_intel Checking test 150 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5213,14 +5213,14 @@ Checking test 150 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 285.833572 -The maximum resident set size (KB) = 1544948 +The total amount of wall time = 275.056041 +The maximum resident set size (KB) = 1551752 Test 150 control_p8_atmlnd_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/control_restart_p8_atmlnd_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_restart_p8_atmlnd_intel Checking test 151 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5241,14 +5241,14 @@ Checking test 151 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 156.401608 -The maximum resident set size (KB) = 743900 +The total amount of wall time = 151.401036 +The maximum resident set size (KB) = 744728 Test 151 control_restart_p8_atmlnd_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/atmaero_control_p8_intel Checking test 152 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5292,14 +5292,14 @@ Checking test 152 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 247.095392 -The maximum resident set size (KB) = 2850036 +The total amount of wall time = 237.752937 +The maximum resident set size (KB) = 2849540 Test 152 atmaero_control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/atmaero_control_p8_rad_intel Checking test 153 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5343,14 +5343,14 @@ Checking test 153 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 282.697272 -The maximum resident set size (KB) = 2910424 +The total amount of wall time = 276.436664 +The maximum resident set size (KB) = 2911808 Test 153 atmaero_control_p8_rad_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/atmaero_control_p8_rad_micro_intel Checking test 154 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5394,14 +5394,14 @@ Checking test 154 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 298.575446 -The maximum resident set size (KB) = 2925080 +The total amount of wall time = 291.421303 +The maximum resident set size (KB) = 2927188 Test 154 atmaero_control_p8_rad_micro_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10811/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_atmaq_debug_intel Checking test 155 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5415,12 +5415,91 @@ Checking test 155 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1330.392416 -The maximum resident set size (KB) = 4436752 +The total amount of wall time = 1318.771189 +The maximum resident set size (KB) = 4442336 Test 155 regional_atmaq_debug_intel PASS +FAILED TESTS: +141 gnv1_nested_intel failed in check_result +gnv1_nested_intel 141 failed in run_test + +REGRESSION TEST FAILED +Mon Feb 5 17:23:32 UTC 2024 +Elapsed time: 01h:16m:11s. Have a nice day! +Mon Feb 5 17:33:53 UTC 2024 +Start Regression test + +Testing UFSWM Hash: 005cd33ccd96ba39fcac4587eda738aa7553809c +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) + 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) ++eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) + 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) + 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile hafsw_intel elapsed time 559 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178233/gnv1_nested_intel +Checking test 001 gnv1_nested_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + +The total amount of wall time = 240.528010 +The maximum resident set size (KB) = 677600 + +Test 001 gnv1_nested_intel PASS + REGRESSION TEST WAS SUCCESSFUL -Fri Feb 2 16:24:02 UTC 2024 -Elapsed time: 01h:31m:13s. Have a nice day! +Mon Feb 5 17:50:03 UTC 2024 +Elapsed time: 00h:16m:11s. Have a nice day! From 9ca291edb2045ef73930025969607adbe5219181 Mon Sep 17 00:00:00 2001 From: Jong Kim Date: Mon, 5 Feb 2024 18:55:27 +0000 Subject: [PATCH 62/63] add hera RT log: passed --- tests/logs/RegressionTests_hera.log | 1600 +++++++++++++-------------- 1 file changed, 800 insertions(+), 800 deletions(-) diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 3fbaddcdb3..3ee4b7f125 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,12 +1,12 @@ -Fri Feb 2 16:28:24 UTC 2024 +Mon Feb 5 16:04:55 UTC 2024 Start Regression test -Testing UFSWM Hash: e41408ae592aa1e3fe586ab058b5320cd96afda6 +Testing UFSWM Hash: 005cd33ccd96ba39fcac4587eda738aa7553809c Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) + c9c4c23b3c3b079dfeb62197a8b9f49c2e105ec7 CMEPS-interface/CMEPS (cmeps0.9.13-80-gc9c4c23b) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) @@ -15,62 +15,62 @@ Testing With Submodule Hashes: 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 215 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 593 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 204 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 219 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 308 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 592 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 217 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 565 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 212 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 541 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 630 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 560 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 563 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 537 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 188 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 354 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 795 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 376 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 60 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 584 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 636 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 222 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 614 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 617 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 660 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 208 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 524 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 194 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_gnu elapsed time 220 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 561 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 612 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 594 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 240 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 655 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 131 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 238 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 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 917 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 696 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 265 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 942 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 151 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 265 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 971 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 840 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 696 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 111 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 177 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 512 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 268 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 202 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 588 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 214 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 212 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 299 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 547 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 203 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 548 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 591 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 580 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 591 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 185 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 353 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 807 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 372 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 578 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 626 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 203 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 617 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 612 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 653 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 522 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 531 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 558 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 594 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 814 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 593 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 228 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 643 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 129 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 232 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 841 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 910 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 684 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 249 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 935 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 140 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 231 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 950 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 835 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 681 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 102 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 300.968010 - 0: The maximum resident set size (KB) = 3175484 + 0: The total amount of wall time = 304.958031 + 0: The maximum resident set size (KB) = 3148040 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 957.549644 - 0: The maximum resident set size (KB) = 1734260 + 0: The total amount of wall time = 955.431620 + 0: The maximum resident set size (KB) = 1738216 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_gfsv17_iau_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -259,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 999.394731 - 0: The maximum resident set size (KB) = 2015292 + 0: The total amount of wall time = 997.624771 + 0: The maximum resident set size (KB) = 2008572 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_restart_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -319,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 446.132047 - 0: The maximum resident set size (KB) = 1103900 + 0: The total amount of wall time = 446.245137 + 0: The maximum resident set size (KB) = 1111460 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_mpi_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -390,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1080.360018 - 0: The maximum resident set size (KB) = 1623136 + 0: The total amount of wall time = 1089.550810 + 0: The maximum resident set size (KB) = 1586264 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_debug_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -449,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1341.153523 - 0: The maximum resident set size (KB) = 1670484 + 0: The total amount of wall time = 1334.036282 + 0: The maximum resident set size (KB) = 1654620 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -521,14 +521,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 328.349038 - 0: The maximum resident set size (KB) = 3178032 + 0: The total amount of wall time = 329.798029 + 0: The maximum resident set size (KB) = 3151272 Test 007 cpld_control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_restart_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -581,14 +581,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 187.053517 - 0: The maximum resident set size (KB) = 3242380 + 0: The total amount of wall time = 186.711328 + 0: The maximum resident set size (KB) = 3243344 Test 008 cpld_restart_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -653,14 +653,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 329.572558 - 0: The maximum resident set size (KB) = 3204532 + 0: The total amount of wall time = 330.090815 + 0: The maximum resident set size (KB) = 3201132 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_restart_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -713,14 +713,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 188.295616 - 0: The maximum resident set size (KB) = 3254952 + 0: The total amount of wall time = 190.782271 + 0: The maximum resident set size (KB) = 3244492 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_2threads_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -773,14 +773,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 311.422387 - 0: The maximum resident set size (KB) = 3552108 + 0: The total amount of wall time = 312.343453 + 0: The maximum resident set size (KB) = 3541188 Test 011 cpld_2threads_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_decomp_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -833,14 +833,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 327.807304 - 0: The maximum resident set size (KB) = 3170288 + 0: The total amount of wall time = 326.672786 + 0: The maximum resident set size (KB) = 3166428 Test 012 cpld_decomp_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_mpi_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -893,14 +893,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 267.783856 - 0: The maximum resident set size (KB) = 3059240 + 0: The total amount of wall time = 267.054668 + 0: The maximum resident set size (KB) = 3068836 Test 013 cpld_mpi_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -965,14 +965,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 327.978481 - 0: The maximum resident set size (KB) = 3177632 + 0: The total amount of wall time = 329.408685 + 0: The maximum resident set size (KB) = 3142256 Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_c192_p8_intel Checking test 015 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1025,14 +1025,14 @@ Checking test 015 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 563.569574 - 0: The maximum resident set size (KB) = 3318392 + 0: The total amount of wall time = 563.472471 + 0: The maximum resident set size (KB) = 3317316 Test 015 cpld_control_c192_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_restart_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_restart_c192_p8_intel Checking test 016 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1085,14 +1085,14 @@ Checking test 016 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 348.590941 - 0: The maximum resident set size (KB) = 3605228 + 0: The total amount of wall time = 353.027886 + 0: The maximum resident set size (KB) = 3602412 Test 016 cpld_restart_c192_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_bmark_p8_intel Checking test 017 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1140,14 +1140,14 @@ Checking test 017 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 556.162705 - 0: The maximum resident set size (KB) = 4114952 + 0: The total amount of wall time = 565.328478 + 0: The maximum resident set size (KB) = 4095312 Test 017 cpld_bmark_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_restart_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_restart_bmark_p8_intel Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1195,14 +1195,14 @@ Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 369.346999 - 0: The maximum resident set size (KB) = 4344988 + 0: The total amount of wall time = 367.552647 + 0: The maximum resident set size (KB) = 4347368 Test 018 cpld_restart_bmark_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_s2sa_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_s2sa_p8_intel Checking test 019 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1253,14 +1253,14 @@ Checking test 019 cpld_s2sa_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 307.567151 - 0: The maximum resident set size (KB) = 3151528 + 0: The total amount of wall time = 310.281736 + 0: The maximum resident set size (KB) = 3167196 Test 019 cpld_s2sa_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_noaero_p8_intel Checking test 020 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1324,14 +1324,14 @@ Checking test 020 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 258.395007 - 0: The maximum resident set size (KB) = 1719516 + 0: The total amount of wall time = 260.032818 + 0: The maximum resident set size (KB) = 1721280 Test 020 cpld_control_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_nowave_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_nowave_noaero_p8_intel Checking test 021 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1393,14 +1393,14 @@ Checking test 021 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 253.923742 - 0: The maximum resident set size (KB) = 1768800 + 0: The total amount of wall time = 248.111130 + 0: The maximum resident set size (KB) = 1784584 Test 021 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_debug_p8_intel Checking test 022 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1453,14 +1453,14 @@ Checking test 022 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 476.470976 - 0: The maximum resident set size (KB) = 3181428 + 0: The total amount of wall time = 480.623149 + 0: The maximum resident set size (KB) = 3163368 Test 022 cpld_debug_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_debug_noaero_p8_intel Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1512,14 +1512,14 @@ Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 324.380102 - 0: The maximum resident set size (KB) = 1722716 + 0: The total amount of wall time = 321.157299 + 0: The maximum resident set size (KB) = 1745732 Test 023 cpld_debug_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_noaero_p8_agrid_intel Checking test 024 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1581,14 +1581,14 @@ Checking test 024 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 253.648624 - 0: The maximum resident set size (KB) = 1752216 + 0: The total amount of wall time = 253.266479 + 0: The maximum resident set size (KB) = 1752152 Test 024 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_c48_intel Checking test 025 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 025 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 543.106982 - 0: The maximum resident set size (KB) = 2818904 + 0: The total amount of wall time = 549.377525 + 0: The maximum resident set size (KB) = 2820136 Test 025 cpld_control_c48_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_p8_faster_intel Checking test 026 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1710,14 +1710,14 @@ Checking test 026 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 310.138238 - 0: The maximum resident set size (KB) = 3181540 + 0: The total amount of wall time = 302.367293 + 0: The maximum resident set size (KB) = 3183668 Test 026 cpld_control_p8_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_pdlib_p8_intel Checking test 027 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1781,14 +1781,14 @@ Checking test 027 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 960.871244 - 0: The maximum resident set size (KB) = 1722240 + 0: The total amount of wall time = 957.678608 + 0: The maximum resident set size (KB) = 1767412 Test 027 cpld_control_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_restart_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_restart_pdlib_p8_intel Checking test 028 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1840,14 +1840,14 @@ Checking test 028 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 446.766122 - 0: The maximum resident set size (KB) = 1167840 + 0: The total amount of wall time = 448.337796 + 0: The maximum resident set size (KB) = 1170792 Test 028 cpld_restart_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_mpi_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_mpi_pdlib_p8_intel Checking test 029 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1911,14 +1911,14 @@ Checking test 029 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1108.444483 - 0: The maximum resident set size (KB) = 1635332 + 0: The total amount of wall time = 1112.112896 + 0: The maximum resident set size (KB) = 1664264 Test 029 cpld_mpi_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_debug_pdlib_p8_intel Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1970,14 +1970,14 @@ Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1442.034213 - 0: The maximum resident set size (KB) = 1712532 + 0: The total amount of wall time = 1475.168538 + 0: The maximum resident set size (KB) = 1682320 Test 030 cpld_debug_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_flake_intel Checking test 031 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1988,14 +1988,14 @@ Checking test 031 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.763388 - 0: The maximum resident set size (KB) = 689712 + 0: The total amount of wall time = 186.564318 + 0: The maximum resident set size (KB) = 691836 Test 031 control_flake_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_CubedSphereGrid_intel Checking test 032 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2022,21 +2022,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 = 131.881859 - 0: The maximum resident set size (KB) = 647612 + 0: The total amount of wall time = 132.434186 + 0: The maximum resident set size (KB) = 648948 Test 032 control_CubedSphereGrid_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_CubedSphereGrid_parallel_intel Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_sfcf024.nc .........OK Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK @@ -2044,14 +2044,14 @@ Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.013629 - 0: The maximum resident set size (KB) = 651588 + 0: The total amount of wall time = 139.019033 + 0: The maximum resident set size (KB) = 650892 Test 033 control_CubedSphereGrid_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_latlon_intel Checking test 034 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2062,14 +2062,14 @@ Checking test 034 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.142332 - 0: The maximum resident set size (KB) = 650640 + 0: The total amount of wall time = 133.921573 + 0: The maximum resident set size (KB) = 651208 Test 034 control_latlon_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_wrtGauss_netcdf_parallel_intel Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2080,14 +2080,14 @@ Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.756632 - 0: The maximum resident set size (KB) = 633412 + 0: The total amount of wall time = 135.853768 + 0: The maximum resident set size (KB) = 647976 Test 035 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_c48_intel Checking test 036 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2126,14 +2126,14 @@ Checking test 036 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 366.631044 -0: The maximum resident set size (KB) = 871440 +0: The total amount of wall time = 370.171422 +0: The maximum resident set size (KB) = 875760 Test 036 control_c48_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_c192_intel Checking test 037 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2144,14 +2144,14 @@ Checking test 037 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 526.917643 - 0: The maximum resident set size (KB) = 860120 + 0: The total amount of wall time = 531.188263 + 0: The maximum resident set size (KB) = 860000 Test 037 control_c192_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_c384_intel Checking test 038 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2162,14 +2162,14 @@ Checking test 038 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 527.302440 - 0: The maximum resident set size (KB) = 1269412 + 0: The total amount of wall time = 521.490635 + 0: The maximum resident set size (KB) = 1284008 Test 038 control_c384_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_c384gdas_intel Checking test 039 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2187,10 +2187,10 @@ Checking test 039 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK @@ -2206,20 +2206,20 @@ Checking test 039 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.154841 - 0: The maximum resident set size (KB) = 1393768 + 0: The total amount of wall time = 456.713903 + 0: The maximum resident set size (KB) = 1388896 Test 039 control_c384gdas_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_stochy_intel Checking test 040 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2230,28 +2230,28 @@ Checking test 040 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.405742 - 0: The maximum resident set size (KB) = 648928 + 0: The total amount of wall time = 86.515053 + 0: The maximum resident set size (KB) = 656988 Test 040 control_stochy_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_stochy_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_stochy_restart_intel Checking test 041 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 50.156431 - 0: The maximum resident set size (KB) = 502984 + 0: The total amount of wall time = 49.034081 + 0: The maximum resident set size (KB) = 471556 Test 041 control_stochy_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_lndp_intel Checking test 042 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 042 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.708728 - 0: The maximum resident set size (KB) = 641008 + 0: The total amount of wall time = 82.775552 + 0: The maximum resident set size (KB) = 653396 Test 042 control_lndp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_iovr4_intel Checking test 043 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2284,14 +2284,14 @@ Checking test 043 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.408246 - 0: The maximum resident set size (KB) = 649188 + 0: The total amount of wall time = 133.880731 + 0: The maximum resident set size (KB) = 649592 Test 043 control_iovr4_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_iovr5_intel Checking test 044 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2306,14 +2306,14 @@ Checking test 044 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.799579 - 0: The maximum resident set size (KB) = 648492 + 0: The total amount of wall time = 135.325399 + 0: The maximum resident set size (KB) = 617020 Test 044 control_iovr5_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_intel Checking test 045 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 045 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.716380 - 0: The maximum resident set size (KB) = 1623972 + 0: The total amount of wall time = 166.929762 + 0: The maximum resident set size (KB) = 1611560 Test 045 control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_p8_ugwpv1_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_ugwpv1_intel Checking test 046 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 046 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.776013 - 0: The maximum resident set size (KB) = 1572920 + 0: The total amount of wall time = 158.153790 + 0: The maximum resident set size (KB) = 1613832 Test 046 control_p8_ugwpv1_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_restart_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_restart_p8_intel Checking test 047 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2460,14 +2460,14 @@ Checking test 047 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 87.180696 - 0: The maximum resident set size (KB) = 887204 + 0: The total amount of wall time = 85.338491 + 0: The maximum resident set size (KB) = 879156 Test 047 control_restart_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_noqr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_noqr_p8_intel Checking test 048 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2514,14 +2514,14 @@ Checking test 048 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 163.522192 - 0: The maximum resident set size (KB) = 1602236 + 0: The total amount of wall time = 160.672369 + 0: The maximum resident set size (KB) = 1606940 Test 048 control_noqr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_restart_noqr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_restart_noqr_p8_intel Checking test 049 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2560,14 +2560,14 @@ Checking test 049 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 84.866114 - 0: The maximum resident set size (KB) = 935296 + 0: The total amount of wall time = 83.782264 + 0: The maximum resident set size (KB) = 927032 Test 049 control_restart_noqr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_decomp_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_decomp_p8_intel Checking test 050 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2610,14 +2610,14 @@ Checking test 050 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 173.886093 - 0: The maximum resident set size (KB) = 1582196 + 0: The total amount of wall time = 167.457721 + 0: The maximum resident set size (KB) = 1599916 Test 050 control_decomp_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_2threads_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_2threads_p8_intel Checking test 051 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2660,14 +2660,14 @@ Checking test 051 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 154.514723 - 0: The maximum resident set size (KB) = 1691136 + 0: The total amount of wall time = 153.691908 + 0: The maximum resident set size (KB) = 1702480 Test 051 control_2threads_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_lndp_intel Checking test 052 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2686,14 +2686,14 @@ Checking test 052 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 301.053877 - 0: The maximum resident set size (KB) = 1609764 + 0: The total amount of wall time = 299.780170 + 0: The maximum resident set size (KB) = 1615356 Test 052 control_p8_lndp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_rrtmgp_intel Checking test 053 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2740,14 +2740,14 @@ Checking test 053 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 218.398204 - 0: The maximum resident set size (KB) = 1663356 + 0: The total amount of wall time = 219.171961 + 0: The maximum resident set size (KB) = 1669132 Test 053 control_p8_rrtmgp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_mynn_intel Checking test 054 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2794,14 +2794,14 @@ Checking test 054 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.873849 - 0: The maximum resident set size (KB) = 1599532 + 0: The total amount of wall time = 166.545934 + 0: The maximum resident set size (KB) = 1601396 Test 054 control_p8_mynn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/merra2_thompson_intel Checking test 055 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2848,14 +2848,14 @@ Checking test 055 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.198321 - 0: The maximum resident set size (KB) = 1605220 + 0: The total amount of wall time = 196.367246 + 0: The maximum resident set size (KB) = 1627884 Test 055 merra2_thompson_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_control_intel Checking test 056 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2866,28 +2866,28 @@ Checking test 056 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.713910 - 0: The maximum resident set size (KB) = 846756 + 0: The total amount of wall time = 295.314872 + 0: The maximum resident set size (KB) = 846860 Test 056 regional_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_restart_intel Checking test 057 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.754821 - 0: The maximum resident set size (KB) = 1019076 + 0: The total amount of wall time = 152.697021 + 0: The maximum resident set size (KB) = 1016532 Test 057 regional_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_decomp_intel Checking test 058 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2898,14 +2898,14 @@ Checking test 058 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 313.553021 - 0: The maximum resident set size (KB) = 843964 + 0: The total amount of wall time = 312.239390 + 0: The maximum resident set size (KB) = 845020 Test 058 regional_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_2threads_intel Checking test 059 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2916,14 +2916,14 @@ Checking test 059 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 178.260640 - 0: The maximum resident set size (KB) = 843140 + 0: The total amount of wall time = 178.116210 + 0: The maximum resident set size (KB) = 840464 Test 059 regional_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_noquilt_intel Checking test 060 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2931,28 +2931,28 @@ Checking test 060 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 293.659143 - 0: The maximum resident set size (KB) = 1362644 + 0: The total amount of wall time = 294.072479 + 0: The maximum resident set size (KB) = 1346948 Test 060 regional_noquilt_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_netcdf_parallel_intel Checking test 061 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 295.305216 - 0: The maximum resident set size (KB) = 849156 + 0: The total amount of wall time = 294.791905 + 0: The maximum resident set size (KB) = 851064 Test 061 regional_netcdf_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_2dwrtdecomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_2dwrtdecomp_intel Checking test 062 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2963,14 +2963,14 @@ Checking test 062 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.978596 - 0: The maximum resident set size (KB) = 845444 + 0: The total amount of wall time = 295.810635 + 0: The maximum resident set size (KB) = 830596 Test 062 regional_2dwrtdecomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_wofs_intel Checking test 063 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2981,14 +2981,14 @@ Checking test 063 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 383.518690 - 0: The maximum resident set size (KB) = 1909928 + 0: The total amount of wall time = 385.345857 + 0: The maximum resident set size (KB) = 1899764 Test 063 regional_wofs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_intel Checking test 064 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3035,14 +3035,14 @@ Checking test 064 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.830474 - 0: The maximum resident set size (KB) = 1087576 + 0: The total amount of wall time = 450.366977 + 0: The maximum resident set size (KB) = 1094784 Test 064 rap_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_spp_sppt_shum_skeb_intel Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3053,14 +3053,14 @@ Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 237.894509 - 0: The maximum resident set size (KB) = 1291712 + 0: The total amount of wall time = 233.626909 + 0: The maximum resident set size (KB) = 1289184 Test 065 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_decomp_intel Checking test 066 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3107,14 +3107,14 @@ Checking test 066 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.466311 - 0: The maximum resident set size (KB) = 1035248 + 0: The total amount of wall time = 468.620618 + 0: The maximum resident set size (KB) = 1031984 Test 066 rap_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_2threads_intel Checking test 067 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3161,14 +3161,14 @@ Checking test 067 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 422.903086 - 0: The maximum resident set size (KB) = 1153724 + 0: The total amount of wall time = 420.826714 + 0: The maximum resident set size (KB) = 1182268 Test 067 rap_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_restart_intel Checking test 068 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3207,14 +3207,14 @@ Checking test 068 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.173557 - 0: The maximum resident set size (KB) = 1101840 + 0: The total amount of wall time = 231.244514 + 0: The maximum resident set size (KB) = 1101472 Test 068 rap_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_sfcdiff_intel Checking test 069 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3261,14 +3261,14 @@ Checking test 069 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.595681 - 0: The maximum resident set size (KB) = 1109480 + 0: The total amount of wall time = 447.163856 + 0: The maximum resident set size (KB) = 1091828 Test 069 rap_sfcdiff_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_sfcdiff_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_sfcdiff_decomp_intel Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3315,14 +3315,14 @@ Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 475.221928 - 0: The maximum resident set size (KB) = 1023336 + 0: The total amount of wall time = 470.404665 + 0: The maximum resident set size (KB) = 1019228 Test 070 rap_sfcdiff_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_sfcdiff_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_sfcdiff_restart_intel Checking test 071 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3361,14 +3361,14 @@ Checking test 071 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 346.292082 - 0: The maximum resident set size (KB) = 1136088 + 0: The total amount of wall time = 337.571688 + 0: The maximum resident set size (KB) = 1130536 Test 071 rap_sfcdiff_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_intel Checking test 072 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3415,14 +3415,14 @@ Checking test 072 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.850574 - 0: The maximum resident set size (KB) = 1027572 + 0: The total amount of wall time = 228.633293 + 0: The maximum resident set size (KB) = 1000848 Test 072 hrrr_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_decomp_intel Checking test 073 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3469,14 +3469,14 @@ Checking test 073 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.299545 - 0: The maximum resident set size (KB) = 1021760 + 0: The total amount of wall time = 233.110620 + 0: The maximum resident set size (KB) = 1020700 Test 073 hrrr_control_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_2threads_intel Checking test 074 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3523,28 +3523,28 @@ Checking test 074 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 210.780558 - 0: The maximum resident set size (KB) = 1097204 + 0: The total amount of wall time = 208.800717 + 0: The maximum resident set size (KB) = 1110236 Test 074 hrrr_control_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_restart_intel Checking test 075 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 121.476800 - 0: The maximum resident set size (KB) = 1004024 + 0: The total amount of wall time = 119.334719 + 0: The maximum resident set size (KB) = 993548 Test 075 hrrr_control_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rrfs_v1beta_intel Checking test 076 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3591,14 +3591,14 @@ Checking test 076 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 445.921908 - 0: The maximum resident set size (KB) = 1085164 + 0: The total amount of wall time = 441.219876 + 0: The maximum resident set size (KB) = 1097556 Test 076 rrfs_v1beta_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rrfs_v1nssl_intel Checking test 077 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3613,14 +3613,14 @@ Checking test 077 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 536.554275 - 0: The maximum resident set size (KB) = 1982192 + 0: The total amount of wall time = 533.153469 + 0: The maximum resident set size (KB) = 1990732 Test 077 rrfs_v1nssl_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rrfs_v1nssl_nohailnoccn_intel Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3635,14 +3635,14 @@ Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 520.794567 - 0: The maximum resident set size (KB) = 2062540 + 0: The total amount of wall time = 520.250062 + 0: The maximum resident set size (KB) = 2051776 Test 078 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3653,14 +3653,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 345.337275 - 0: The maximum resident set size (KB) = 738752 + 0: The total amount of wall time = 340.804763 + 0: The maximum resident set size (KB) = 739316 Test 079 control_csawmg_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3671,14 +3671,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.785170 - 0: The maximum resident set size (KB) = 746136 + 0: The total amount of wall time = 334.956617 + 0: The maximum resident set size (KB) = 712324 Test 080 control_csawmgt_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3689,26 +3689,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 188.291650 - 0: The maximum resident set size (KB) = 738336 + 0: The total amount of wall time = 186.820782 + 0: The maximum resident set size (KB) = 735028 Test 081 control_ras_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_wam_intel Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.520156 - 0: The maximum resident set size (KB) = 650812 + 0: The total amount of wall time = 113.594046 + 0: The maximum resident set size (KB) = 644096 Test 082 control_wam_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3755,14 +3755,14 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 147.166441 - 0: The maximum resident set size (KB) = 1615760 + 0: The total amount of wall time = 145.368687 + 0: The maximum resident set size (KB) = 1619232 Test 083 control_p8_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3773,14 +3773,14 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 268.277682 - 0: The maximum resident set size (KB) = 821772 + 0: The total amount of wall time = 266.262541 + 0: The maximum resident set size (KB) = 847716 Test 084 regional_control_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3807,364 +3807,364 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 148.358869 - 0: The maximum resident set size (KB) = 814320 + 0: The total amount of wall time = 145.055378 + 0: The maximum resident set size (KB) = 809480 Test 085 control_CubedSphereGrid_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_wrtGauss_netcdf_parallel_debug_intel Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.186012 - 0: The maximum resident set size (KB) = 808564 + 0: The total amount of wall time = 146.493861 + 0: The maximum resident set size (KB) = 811512 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_stochy_debug_intel Checking test 087 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.425432 - 0: The maximum resident set size (KB) = 818100 + 0: The total amount of wall time = 167.323485 + 0: The maximum resident set size (KB) = 781356 Test 087 control_stochy_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_lndp_debug_intel Checking test 088 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.581309 - 0: The maximum resident set size (KB) = 816408 + 0: The total amount of wall time = 147.995786 + 0: The maximum resident set size (KB) = 811136 Test 088 control_lndp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_csawmg_debug_intel Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 224.122102 - 0: The maximum resident set size (KB) = 853740 + 0: The total amount of wall time = 225.276189 + 0: The maximum resident set size (KB) = 864880 Test 089 control_csawmg_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_csawmgt_debug_intel Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.742921 - 0: The maximum resident set size (KB) = 828476 + 0: The total amount of wall time = 225.956854 + 0: The maximum resident set size (KB) = 863180 Test 090 control_csawmgt_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_ras_debug_intel Checking test 091 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.364934 - 0: The maximum resident set size (KB) = 824932 + 0: The total amount of wall time = 150.524037 + 0: The maximum resident set size (KB) = 824452 Test 091 control_ras_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_diag_debug_intel Checking test 092 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.749906 - 0: The maximum resident set size (KB) = 868432 + 0: The total amount of wall time = 151.762811 + 0: The maximum resident set size (KB) = 874524 Test 092 control_diag_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_debug_p8_intel Checking test 093 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 159.776603 - 0: The maximum resident set size (KB) = 1636556 + 0: The total amount of wall time = 157.930732 + 0: The maximum resident set size (KB) = 1637680 Test 093 control_debug_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_debug_intel Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 951.027689 - 0: The maximum resident set size (KB) = 842216 + 0: The total amount of wall time = 989.414920 + 0: The maximum resident set size (KB) = 844060 Test 094 regional_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_debug_intel Checking test 095 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.713808 - 0: The maximum resident set size (KB) = 1192076 + 0: The total amount of wall time = 275.743992 + 0: The maximum resident set size (KB) = 1205968 Test 095 rap_control_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_debug_intel Checking test 096 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.195137 - 0: The maximum resident set size (KB) = 1169180 + 0: The total amount of wall time = 273.587426 + 0: The maximum resident set size (KB) = 1188196 Test 096 hrrr_control_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_gf_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_gf_debug_intel Checking test 097 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.709224 - 0: The maximum resident set size (KB) = 1207512 + 0: The total amount of wall time = 271.577904 + 0: The maximum resident set size (KB) = 1168904 Test 097 hrrr_gf_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_c3_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_c3_debug_intel Checking test 098 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.712360 - 0: The maximum resident set size (KB) = 1202484 + 0: The total amount of wall time = 280.320244 + 0: The maximum resident set size (KB) = 1201040 Test 098 hrrr_c3_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_unified_drag_suite_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_unified_drag_suite_debug_intel Checking test 099 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.687025 - 0: The maximum resident set size (KB) = 1191120 + 0: The total amount of wall time = 272.384853 + 0: The maximum resident set size (KB) = 1199072 Test 099 rap_unified_drag_suite_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_diag_debug_intel Checking test 100 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.225502 - 0: The maximum resident set size (KB) = 1276272 + 0: The total amount of wall time = 287.450519 + 0: The maximum resident set size (KB) = 1250492 Test 100 rap_diag_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_cires_ugwp_debug_intel Checking test 101 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.728061 - 0: The maximum resident set size (KB) = 1203780 + 0: The total amount of wall time = 279.011727 + 0: The maximum resident set size (KB) = 1194848 Test 101 rap_cires_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_unified_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_unified_ugwp_debug_intel Checking test 102 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.104913 - 0: The maximum resident set size (KB) = 1203104 + 0: The total amount of wall time = 283.901943 + 0: The maximum resident set size (KB) = 1199404 Test 102 rap_unified_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_lndp_debug_intel Checking test 103 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.144271 - 0: The maximum resident set size (KB) = 1195980 + 0: The total amount of wall time = 278.978114 + 0: The maximum resident set size (KB) = 1202272 Test 103 rap_lndp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_progcld_thompson_debug_intel Checking test 104 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.649890 - 0: The maximum resident set size (KB) = 1207756 + 0: The total amount of wall time = 277.215816 + 0: The maximum resident set size (KB) = 1202172 Test 104 rap_progcld_thompson_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_noah_debug_intel Checking test 105 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.365633 - 0: The maximum resident set size (KB) = 1192308 + 0: The total amount of wall time = 269.153767 + 0: The maximum resident set size (KB) = 1207516 Test 105 rap_noah_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_sfcdiff_debug_intel Checking test 106 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.499361 - 0: The maximum resident set size (KB) = 1179132 + 0: The total amount of wall time = 272.593517 + 0: The maximum resident set size (KB) = 1198500 Test 106 rap_sfcdiff_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 465.002937 - 0: The maximum resident set size (KB) = 1188692 + 0: The total amount of wall time = 447.151842 + 0: The maximum resident set size (KB) = 1190028 Test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rrfs_v1beta_debug_intel Checking test 108 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.618412 - 0: The maximum resident set size (KB) = 1166872 + 0: The total amount of wall time = 272.581265 + 0: The maximum resident set size (KB) = 1189628 Test 108 rrfs_v1beta_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_clm_lake_debug_intel Checking test 109 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 347.960003 - 0: The maximum resident set size (KB) = 1182832 + 0: The total amount of wall time = 350.186347 + 0: The maximum resident set size (KB) = 1198564 Test 109 rap_clm_lake_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_flake_debug_intel Checking test 110 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.040356 - 0: The maximum resident set size (KB) = 1197972 + 0: The total amount of wall time = 272.088415 + 0: The maximum resident set size (KB) = 1195828 Test 110 rap_flake_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/gnv1_c96_no_nest_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/gnv1_c96_no_nest_debug_intel Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4205,26 +4205,26 @@ Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.204103 - 0: The maximum resident set size (KB) = 1201292 + 0: The total amount of wall time = 462.556356 + 0: The maximum resident set size (KB) = 1196912 Test 111 gnv1_c96_no_nest_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_wam_debug_intel Checking test 112 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 282.551065 - 0: The maximum resident set size (KB) = 507092 + 0: The total amount of wall time = 278.557135 + 0: The maximum resident set size (KB) = 521848 Test 112 control_wam_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4235,14 +4235,14 @@ Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 229.701025 - 0: The maximum resident set size (KB) = 1156596 + 0: The total amount of wall time = 227.440380 + 0: The maximum resident set size (KB) = 1156564 Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_dyn32_phy32_intel Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4289,14 +4289,14 @@ Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 380.734118 - 0: The maximum resident set size (KB) = 1043884 + 0: The total amount of wall time = 368.557787 + 0: The maximum resident set size (KB) = 1020924 Test 114 rap_control_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_dyn32_phy32_intel Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4343,14 +4343,14 @@ Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.789871 - 0: The maximum resident set size (KB) = 948120 + 0: The total amount of wall time = 189.918061 + 0: The maximum resident set size (KB) = 969300 Test 115 hrrr_control_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_2threads_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_2threads_dyn32_phy32_intel Checking test 116 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4397,14 +4397,14 @@ Checking test 116 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 359.138367 - 0: The maximum resident set size (KB) = 1086560 + 0: The total amount of wall time = 348.333087 + 0: The maximum resident set size (KB) = 1086104 Test 116 rap_2threads_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_2threads_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_2threads_dyn32_phy32_intel Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4451,14 +4451,14 @@ Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 186.486500 - 0: The maximum resident set size (KB) = 954888 + 0: The total amount of wall time = 180.181859 + 0: The maximum resident set size (KB) = 965172 Test 117 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_decomp_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_decomp_dyn32_phy32_intel Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4505,14 +4505,14 @@ Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 212.341917 - 0: The maximum resident set size (KB) = 924884 + 0: The total amount of wall time = 201.785190 + 0: The maximum resident set size (KB) = 918992 Test 118 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_restart_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_restart_dyn32_phy32_intel Checking test 119 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4551,28 +4551,28 @@ Checking test 119 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.183442 - 0: The maximum resident set size (KB) = 1034820 + 0: The total amount of wall time = 277.195527 + 0: The maximum resident set size (KB) = 1030528 Test 119 rap_restart_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_restart_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_restart_dyn32_phy32_intel Checking test 120 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 106.644047 - 0: The maximum resident set size (KB) = 929388 + 0: The total amount of wall time = 100.013804 + 0: The maximum resident set size (KB) = 930076 Test 120 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_control_intel Checking test 121 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4588,40 +4588,40 @@ Checking test 121 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 117.166581 - 0: The maximum resident set size (KB) = 1193788 + 0: The total amount of wall time = 110.521906 + 0: The maximum resident set size (KB) = 1202840 Test 121 conus13km_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_2threads_intel Checking test 122 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 56.320225 - 0: The maximum resident set size (KB) = 1112940 + 0: The total amount of wall time = 42.663129 + 0: The maximum resident set size (KB) = 1123900 Test 122 conus13km_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_restart_mismatch_intel Checking test 123 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 72.800518 - 0: The maximum resident set size (KB) = 1071108 + 0: The total amount of wall time = 61.564367 + 0: The maximum resident set size (KB) = 1105368 Test 123 conus13km_restart_mismatch_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_dyn64_phy32_intel Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4668,42 +4668,42 @@ Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 249.216127 - 0: The maximum resident set size (KB) = 992632 + 0: The total amount of wall time = 242.326200 + 0: The maximum resident set size (KB) = 975444 Test 124 rap_control_dyn64_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_debug_dyn32_phy32_intel Checking test 125 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.096652 - 0: The maximum resident set size (KB) = 1080520 + 0: The total amount of wall time = 271.534913 + 0: The maximum resident set size (KB) = 1080528 Test 125 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_debug_dyn32_phy32_intel Checking test 126 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.779893 - 0: The maximum resident set size (KB) = 1074964 + 0: The total amount of wall time = 262.074906 + 0: The maximum resident set size (KB) = 1074564 Test 126 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_debug_intel Checking test 127 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4717,14 +4717,14 @@ Checking test 127 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 822.060671 - 0: The maximum resident set size (KB) = 1224652 + 0: The total amount of wall time = 835.339812 + 0: The maximum resident set size (KB) = 1198160 Test 127 conus13km_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_debug_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_debug_qr_intel Checking test 128 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4738,81 +4738,81 @@ Checking test 128 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 848.161375 - 0: The maximum resident set size (KB) = 912204 + 0: The total amount of wall time = 835.471252 + 0: The maximum resident set size (KB) = 917080 Test 128 conus13km_debug_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_debug_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_debug_2threads_intel Checking test 129 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 483.687570 - 0: The maximum resident set size (KB) = 1148648 + 0: The total amount of wall time = 461.971414 + 0: The maximum resident set size (KB) = 1151156 Test 129 conus13km_debug_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_radar_tten_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_radar_tten_debug_intel Checking test 130 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 828.697059 - 0: The maximum resident set size (KB) = 1291956 + 0: The total amount of wall time = 820.630781 + 0: The maximum resident set size (KB) = 1287516 Test 130 conus13km_radar_tten_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_dyn64_phy32_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_dyn64_phy32_debug_intel Checking test 131 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.496308 - 0: The maximum resident set size (KB) = 1111472 + 0: The total amount of wall time = 280.692154 + 0: The maximum resident set size (KB) = 1104400 Test 131 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_atm_intel Checking test 132 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 274.519797 - 0: The maximum resident set size (KB) = 728856 + 0: The total amount of wall time = 269.040684 + 0: The maximum resident set size (KB) = 740032 Test 132 hafs_regional_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_atm_thompson_gfdlsf_intel Checking test 133 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 346.000603 - 0: The maximum resident set size (KB) = 1108228 + 0: The total amount of wall time = 337.462528 + 0: The maximum resident set size (KB) = 1114212 Test 133 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_atm_ocn_intel Checking test 134 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4821,14 +4821,14 @@ Checking test 134 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 393.571199 - 0: The maximum resident set size (KB) = 808008 + 0: The total amount of wall time = 392.511413 + 0: The maximum resident set size (KB) = 833076 Test 134 hafs_regional_atm_ocn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_atm_wav_intel Checking test 135 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4837,14 +4837,14 @@ Checking test 135 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 764.978842 - 0: The maximum resident set size (KB) = 849596 + 0: The total amount of wall time = 760.911262 + 0: The maximum resident set size (KB) = 868292 Test 135 hafs_regional_atm_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_atm_ocn_wav_intel Checking test 136 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4855,14 +4855,14 @@ Checking test 136 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 868.318725 - 0: The maximum resident set size (KB) = 878360 + 0: The total amount of wall time = 867.326621 + 0: The maximum resident set size (KB) = 879692 Test 136 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_1nest_atm_intel Checking test 137 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4879,19 +4879,19 @@ Checking test 137 hafs_regional_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 303.861184 - 0: The maximum resident set size (KB) = 500544 + 0: The total amount of wall time = 305.095077 + 0: The maximum resident set size (KB) = 498508 Test 137 hafs_regional_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_telescopic_2nests_atm_intel Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4900,14 +4900,14 @@ Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 378.433064 - 0: The maximum resident set size (KB) = 517536 + 0: The total amount of wall time = 368.217847 + 0: The maximum resident set size (KB) = 521656 Test 138 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_global_1nest_atm_intel Checking test 139 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4917,19 +4917,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.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.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_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 @@ -4954,14 +4954,14 @@ Checking test 139 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 150.087193 - 0: The maximum resident set size (KB) = 374324 + 0: The total amount of wall time = 144.019526 + 0: The maximum resident set size (KB) = 372432 Test 139 hafs_global_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_global_multiple_4nests_atm_intel Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4988,19 +4988,19 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK 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.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK @@ -5043,14 +5043,14 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 406.787935 - 0: The maximum resident set size (KB) = 479708 + 0: The total amount of wall time = 406.250890 + 0: The maximum resident set size (KB) = 475980 Test 140 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_specified_moving_1nest_atm_intel Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5059,14 +5059,14 @@ Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 212.305615 - 0: The maximum resident set size (KB) = 529008 + 0: The total amount of wall time = 205.913870 + 0: The maximum resident set size (KB) = 529472 Test 141 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_storm_following_1nest_atm_intel Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5084,18 +5084,18 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 200.826276 - 0: The maximum resident set size (KB) = 531480 + 0: The total amount of wall time = 195.540172 + 0: The maximum resident set size (KB) = 532068 Test 142 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5104,28 +5104,28 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 246.025371 - 0: The maximum resident set size (KB) = 587884 + 0: The total amount of wall time = 231.563191 + 0: The maximum resident set size (KB) = 560816 Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_global_storm_following_1nest_atm_intel Checking test 144 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 76.751532 - 0: The maximum resident set size (KB) = 404804 + 0: The total amount of wall time = 64.182739 + 0: The maximum resident set size (KB) = 404656 Test 144 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/gnv1_nested_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/gnv1_nested_intel Checking test 145 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5143,17 +5143,17 @@ Checking test 145 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.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.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK @@ -5172,28 +5172,28 @@ Checking test 145 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 241.419489 - 0: The maximum resident set size (KB) = 791328 + 0: The total amount of wall time = 230.086296 + 0: The maximum resident set size (KB) = 799868 Test 145 gnv1_nested_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 726.824608 - 0: The maximum resident set size (KB) = 562212 + 0: The total amount of wall time = 726.576204 + 0: The maximum resident set size (KB) = 572116 Test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5204,14 +5204,14 @@ 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 = 502.308956 - 0: The maximum resident set size (KB) = 670460 + 0: The total amount of wall time = 497.710518 + 0: The maximum resident set size (KB) = 636284 Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5222,14 +5222,14 @@ Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 510.203423 - 0: The maximum resident set size (KB) = 733980 + 0: The total amount of wall time = 496.967255 + 0: The maximum resident set size (KB) = 713496 Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -5239,14 +5239,14 @@ Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 380.434319 - 0: The maximum resident set size (KB) = 740572 + 0: The total amount of wall time = 363.350077 + 0: The maximum resident set size (KB) = 689456 Test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_docn_intel Checking test 150 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5254,14 +5254,14 @@ Checking test 150 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 368.832649 - 0: The maximum resident set size (KB) = 821284 + 0: The total amount of wall time = 385.494856 + 0: The maximum resident set size (KB) = 817532 Test 150 hafs_regional_docn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_docn_oisst_intel Checking test 151 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5269,131 +5269,131 @@ Checking test 151 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 372.557851 - 0: The maximum resident set size (KB) = 788952 + 0: The total amount of wall time = 365.255275 + 0: The maximum resident set size (KB) = 807076 Test 151 hafs_regional_docn_oisst_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_datm_cdeps_intel Checking test 152 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 953.302486 - 0: The maximum resident set size (KB) = 1208600 + 0: The total amount of wall time = 957.184061 + 0: The maximum resident set size (KB) = 1207540 Test 152 hafs_regional_datm_cdeps_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_control_cfsr_intel Checking test 153 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.117039 - 0: The maximum resident set size (KB) = 1119480 + 0: The total amount of wall time = 150.680540 + 0: The maximum resident set size (KB) = 1123960 Test 153 datm_cdeps_control_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_restart_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_restart_cfsr_intel Checking test 154 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.537728 - 0: The maximum resident set size (KB) = 1079836 + 0: The total amount of wall time = 92.600039 + 0: The maximum resident set size (KB) = 1071924 Test 154 datm_cdeps_restart_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_control_gefs_intel Checking test 155 datm_cdeps_control_gefs_intel results .... 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.820813 - 0: The maximum resident set size (KB) = 1007208 + 0: The total amount of wall time = 145.951606 + 0: The maximum resident set size (KB) = 1006268 Test 155 datm_cdeps_control_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_iau_gefs_intel Checking test 156 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.909901 - 0: The maximum resident set size (KB) = 1007436 + 0: The total amount of wall time = 145.270741 + 0: The maximum resident set size (KB) = 1017980 Test 156 datm_cdeps_iau_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_stochy_gefs_intel Checking test 157 datm_cdeps_stochy_gefs_intel results .... 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.983540 - 0: The maximum resident set size (KB) = 1002032 + 0: The total amount of wall time = 149.213326 + 0: The maximum resident set size (KB) = 1021072 Test 157 datm_cdeps_stochy_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_ciceC_cfsr_intel Checking test 158 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.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.967205 - 0: The maximum resident set size (KB) = 1121584 + 0: The total amount of wall time = 147.909855 + 0: The maximum resident set size (KB) = 1114604 Test 158 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_bulk_cfsr_intel Checking test 159 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.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.204371 - 0: The maximum resident set size (KB) = 1122920 + 0: The total amount of wall time = 149.461375 + 0: The maximum resident set size (KB) = 1124828 Test 159 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_bulk_gefs_intel Checking test 160 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.246812 - 0: The maximum resident set size (KB) = 1006772 + 0: The total amount of wall time = 145.594920 + 0: The maximum resident set size (KB) = 990052 Test 160 datm_cdeps_bulk_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_mx025_cfsr_intel Checking test 161 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5402,14 +5402,14 @@ Checking test 161 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 406.124419 - 0: The maximum resident set size (KB) = 1052020 + 0: The total amount of wall time = 367.127490 + 0: The maximum resident set size (KB) = 1072600 Test 161 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_mx025_gefs_intel Checking test 162 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5418,77 +5418,77 @@ Checking test 162 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 363.946917 - 0: The maximum resident set size (KB) = 1049216 + 0: The total amount of wall time = 393.081171 + 0: The maximum resident set size (KB) = 1042836 Test 162 datm_cdeps_mx025_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_multiple_files_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_multiple_files_cfsr_intel Checking test 163 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.268806 - 0: The maximum resident set size (KB) = 1119508 + 0: The total amount of wall time = 153.389953 + 0: The maximum resident set size (KB) = 1117624 Test 163 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_3072x1536_cfsr_intel Checking test 164 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 279.947413 - 0: The maximum resident set size (KB) = 2420228 + 0: The total amount of wall time = 224.118666 + 0: The maximum resident set size (KB) = 2427208 Test 164 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_gfs_intel Checking test 165 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 227.888244 - 0: The maximum resident set size (KB) = 2460044 + 0: The total amount of wall time = 225.533239 + 0: The maximum resident set size (KB) = 2435672 Test 165 datm_cdeps_gfs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_debug_cfsr_intel Checking test 166 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 355.109843 - 0: The maximum resident set size (KB) = 1050908 + 0: The total amount of wall time = 356.200975 + 0: The maximum resident set size (KB) = 1051880 Test 166 datm_cdeps_debug_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_control_cfsr_faster_intel Checking test 167 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.218795 - 0: The maximum resident set size (KB) = 1124380 + 0: The total amount of wall time = 150.399684 + 0: The maximum resident set size (KB) = 1125588 Test 167 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_lnd_gswp3_intel Checking test 168 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5497,14 +5497,14 @@ Checking test 168 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 38.616207 - 0: The maximum resident set size (KB) = 253848 + 0: The total amount of wall time = 37.227795 + 0: The maximum resident set size (KB) = 255552 Test 168 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_lnd_era5_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_lnd_era5_intel Checking test 169 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5513,14 +5513,14 @@ Checking test 169 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 41.283901 - 0: The maximum resident set size (KB) = 317312 + 0: The total amount of wall time = 40.486714 + 0: The maximum resident set size (KB) = 318592 Test 169 datm_cdeps_lnd_era5_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_lnd_era5_rst_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_lnd_era5_rst_intel Checking test 170 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5529,14 +5529,14 @@ Checking test 170 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 22.678163 - 0: The maximum resident set size (KB) = 316032 + 0: The total amount of wall time = 21.767384 + 0: The maximum resident set size (KB) = 314644 Test 170 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_atmlnd_sbs_intel Checking test 171 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5625,14 +5625,14 @@ Checking test 171 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 250.291900 - 0: The maximum resident set size (KB) = 1585788 + 0: The total amount of wall time = 248.362695 + 0: The maximum resident set size (KB) = 1567128 Test 171 control_p8_atmlnd_sbs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_p8_atmlnd_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_atmlnd_intel Checking test 172 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5721,14 +5721,14 @@ Checking test 172 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 252.811255 - 0: The maximum resident set size (KB) = 1576664 + 0: The total amount of wall time = 242.736688 + 0: The maximum resident set size (KB) = 1588544 Test 172 control_p8_atmlnd_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_restart_p8_atmlnd_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_restart_p8_atmlnd_intel Checking test 173 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5749,14 +5749,14 @@ Checking test 173 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 131.476068 - 0: The maximum resident set size (KB) = 886508 + 0: The total amount of wall time = 124.620666 + 0: The maximum resident set size (KB) = 892940 Test 173 control_restart_p8_atmlnd_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/atmwav_control_noaero_p8_intel Checking test 174 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5799,14 +5799,14 @@ Checking test 174 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 94.339391 - 0: The maximum resident set size (KB) = 1643340 + 0: The total amount of wall time = 92.003851 + 0: The maximum resident set size (KB) = 1649056 Test 174 atmwav_control_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_atmwav_intel Checking test 175 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5850,14 +5850,14 @@ Checking test 175 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 88.774079 - 0: The maximum resident set size (KB) = 663592 + 0: The total amount of wall time = 87.957613 + 0: The maximum resident set size (KB) = 668764 Test 175 control_atmwav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/atmaero_control_p8_intel Checking test 176 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5901,14 +5901,14 @@ Checking test 176 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.898102 - 0: The maximum resident set size (KB) = 2975888 + 0: The total amount of wall time = 224.280401 + 0: The maximum resident set size (KB) = 3004672 Test 176 atmaero_control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/atmaero_control_p8_rad_intel Checking test 177 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5952,14 +5952,14 @@ Checking test 177 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 274.489658 - 0: The maximum resident set size (KB) = 3091772 + 0: The total amount of wall time = 280.339046 + 0: The maximum resident set size (KB) = 3085368 Test 177 atmaero_control_p8_rad_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/atmaero_control_p8_rad_micro_intel Checking test 178 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6003,14 +6003,14 @@ Checking test 178 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 288.085397 - 0: The maximum resident set size (KB) = 3111208 + 0: The total amount of wall time = 285.678953 + 0: The maximum resident set size (KB) = 3095612 Test 178 atmaero_control_p8_rad_micro_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_atmaq_debug_intel Checking test 179 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6024,14 +6024,14 @@ Checking test 179 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1192.875385 - 0: The maximum resident set size (KB) = 4511000 + 0: The total amount of wall time = 1195.038352 + 0: The maximum resident set size (KB) = 4508140 Test 179 regional_atmaq_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_c48_gnu Checking test 180 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6070,14 +6070,14 @@ Checking test 180 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 688.896216 -0: The maximum resident set size (KB) = 792632 +0: The total amount of wall time = 689.527241 +0: The maximum resident set size (KB) = 796248 Test 180 control_c48_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_stochy_gnu Checking test 181 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -6088,14 +6088,14 @@ Checking test 181 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 233.870463 - 0: The maximum resident set size (KB) = 552204 + 0: The total amount of wall time = 223.236365 + 0: The maximum resident set size (KB) = 553500 Test 181 control_stochy_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_ras_gnu Checking test 182 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6106,14 +6106,14 @@ Checking test 182 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 289.569964 - 0: The maximum resident set size (KB) = 557388 + 0: The total amount of wall time = 287.892871 + 0: The maximum resident set size (KB) = 556028 Test 182 control_ras_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_gnu Checking test 183 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6160,14 +6160,14 @@ Checking test 183 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.420545 - 0: The maximum resident set size (KB) = 1304076 + 0: The total amount of wall time = 276.493301 + 0: The maximum resident set size (KB) = 1312608 Test 183 control_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_p8_ugwpv1_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_ugwpv1_gnu Checking test 184 control_p8_ugwpv1_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6214,14 +6214,14 @@ Checking test 184 control_p8_ugwpv1_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 275.534805 - 0: The maximum resident set size (KB) = 1311316 + 0: The total amount of wall time = 268.543767 + 0: The maximum resident set size (KB) = 1316832 Test 184 control_p8_ugwpv1_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_flake_gnu Checking test 185 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6232,14 +6232,14 @@ Checking test 185 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.662094 - 0: The maximum resident set size (KB) = 598184 + 0: The total amount of wall time = 348.991180 + 0: The maximum resident set size (KB) = 598048 Test 185 control_flake_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_gnu Checking test 186 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6286,14 +6286,14 @@ Checking test 186 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 696.633085 - 0: The maximum resident set size (KB) = 894156 + 0: The total amount of wall time = 678.688624 + 0: The maximum resident set size (KB) = 895932 Test 186 rap_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_decomp_gnu Checking test 187 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6340,14 +6340,14 @@ Checking test 187 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 701.800183 - 0: The maximum resident set size (KB) = 898476 + 0: The total amount of wall time = 691.782275 + 0: The maximum resident set size (KB) = 901012 Test 187 rap_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_2threads_gnu Checking test 188 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6394,14 +6394,14 @@ Checking test 188 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 623.182313 - 0: The maximum resident set size (KB) = 983560 + 0: The total amount of wall time = 623.748776 + 0: The maximum resident set size (KB) = 976164 Test 188 rap_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_restart_gnu Checking test 189 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6440,14 +6440,14 @@ Checking test 189 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 350.670993 - 0: The maximum resident set size (KB) = 623392 + 0: The total amount of wall time = 348.568778 + 0: The maximum resident set size (KB) = 625864 Test 189 rap_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_sfcdiff_gnu Checking test 190 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6494,14 +6494,14 @@ Checking test 190 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 693.738976 - 0: The maximum resident set size (KB) = 900804 + 0: The total amount of wall time = 682.548778 + 0: The maximum resident set size (KB) = 894904 Test 190 rap_sfcdiff_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_sfcdiff_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_sfcdiff_decomp_gnu Checking test 191 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6548,14 +6548,14 @@ Checking test 191 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 720.224807 - 0: The maximum resident set size (KB) = 897196 + 0: The total amount of wall time = 699.715375 + 0: The maximum resident set size (KB) = 897088 Test 191 rap_sfcdiff_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_sfcdiff_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_sfcdiff_restart_gnu Checking test 192 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6594,14 +6594,14 @@ Checking test 192 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 517.616788 - 0: The maximum resident set size (KB) = 629740 + 0: The total amount of wall time = 510.536601 + 0: The maximum resident set size (KB) = 635292 Test 192 rap_sfcdiff_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_gnu Checking test 193 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6648,14 +6648,14 @@ Checking test 193 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 357.785219 - 0: The maximum resident set size (KB) = 892756 + 0: The total amount of wall time = 350.261379 + 0: The maximum resident set size (KB) = 892784 Test 193 hrrr_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_noqr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_noqr_gnu Checking test 194 hrrr_control_noqr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6702,14 +6702,14 @@ Checking test 194 hrrr_control_noqr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 353.818968 - 0: The maximum resident set size (KB) = 878592 + 0: The total amount of wall time = 349.349602 + 0: The maximum resident set size (KB) = 879924 Test 194 hrrr_control_noqr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_2threads_gnu Checking test 195 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6756,14 +6756,14 @@ Checking test 195 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 308.542055 - 0: The maximum resident set size (KB) = 977444 + 0: The total amount of wall time = 304.163608 + 0: The maximum resident set size (KB) = 973356 Test 195 hrrr_control_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_decomp_gnu Checking test 196 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6810,42 +6810,42 @@ Checking test 196 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 348.044669 - 0: The maximum resident set size (KB) = 890116 + 0: The total amount of wall time = 352.008424 + 0: The maximum resident set size (KB) = 898904 Test 196 hrrr_control_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_restart_gnu Checking test 197 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 186.654459 - 0: The maximum resident set size (KB) = 608856 + 0: The total amount of wall time = 182.458855 + 0: The maximum resident set size (KB) = 617740 Test 197 hrrr_control_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_restart_noqr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_restart_noqr_gnu Checking test 198 hrrr_control_restart_noqr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 183.775492 - 0: The maximum resident set size (KB) = 704132 + 0: The total amount of wall time = 183.278530 + 0: The maximum resident set size (KB) = 704172 Test 198 hrrr_control_restart_noqr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rrfs_v1beta_gnu Checking test 199 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6892,224 +6892,224 @@ Checking test 199 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 681.177390 - 0: The maximum resident set size (KB) = 894980 + 0: The total amount of wall time = 675.015539 + 0: The maximum resident set size (KB) = 894172 Test 199 rrfs_v1beta_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_diag_debug_gnu Checking test 200 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 87.662658 - 0: The maximum resident set size (KB) = 598448 + 0: The total amount of wall time = 85.109043 + 0: The maximum resident set size (KB) = 592152 Test 200 control_diag_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_debug_gnu Checking test 201 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 450.541588 - 0: The maximum resident set size (KB) = 602624 + 0: The total amount of wall time = 442.016261 + 0: The maximum resident set size (KB) = 597928 Test 201 regional_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_debug_gnu Checking test 202 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 144.797289 - 0: The maximum resident set size (KB) = 913104 + 0: The total amount of wall time = 143.674214 + 0: The maximum resident set size (KB) = 909316 Test 202 rap_control_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_debug_gnu Checking test 203 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.575201 - 0: The maximum resident set size (KB) = 906196 + 0: The total amount of wall time = 139.978238 + 0: The maximum resident set size (KB) = 899504 Test 203 hrrr_control_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_gf_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_gf_debug_gnu Checking test 204 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 144.402465 - 0: The maximum resident set size (KB) = 910188 + 0: The total amount of wall time = 139.895900 + 0: The maximum resident set size (KB) = 903352 Test 204 hrrr_gf_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_c3_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_c3_debug_gnu Checking test 205 hrrr_c3_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 144.849773 - 0: The maximum resident set size (KB) = 876768 + 0: The total amount of wall time = 139.594409 + 0: The maximum resident set size (KB) = 908756 Test 205 hrrr_c3_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_diag_debug_gnu Checking test 206 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.207474 - 0: The maximum resident set size (KB) = 1001556 + 0: The total amount of wall time = 151.553650 + 0: The maximum resident set size (KB) = 996124 Test 206 rap_diag_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 207 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.457246 - 0: The maximum resident set size (KB) = 912204 + 0: The total amount of wall time = 218.661576 + 0: The maximum resident set size (KB) = 904724 Test 207 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_progcld_thompson_debug_gnu Checking test 208 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 141.569324 - 0: The maximum resident set size (KB) = 910128 + 0: The total amount of wall time = 142.369104 + 0: The maximum resident set size (KB) = 905632 Test 208 rap_progcld_thompson_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rrfs_v1beta_debug_gnu Checking test 209 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.874782 - 0: The maximum resident set size (KB) = 904704 + 0: The total amount of wall time = 139.736189 + 0: The maximum resident set size (KB) = 904108 Test 209 rrfs_v1beta_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_ras_debug_gnu Checking test 210 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 80.824816 - 0: The maximum resident set size (KB) = 549668 + 0: The total amount of wall time = 79.582132 + 0: The maximum resident set size (KB) = 544808 Test 210 control_ras_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_stochy_debug_gnu Checking test 211 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 124.025899 - 0: The maximum resident set size (KB) = 542224 + 0: The total amount of wall time = 112.351182 + 0: The maximum resident set size (KB) = 541280 Test 211 control_stochy_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_debug_p8_gnu Checking test 212 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 89.288006 - 0: The maximum resident set size (KB) = 1297476 + 0: The total amount of wall time = 87.395825 + 0: The maximum resident set size (KB) = 1290088 Test 212 control_debug_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_flake_debug_gnu Checking test 213 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 144.304680 - 0: The maximum resident set size (KB) = 921752 + 0: The total amount of wall time = 139.584828 + 0: The maximum resident set size (KB) = 908196 Test 213 rap_flake_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_clm_lake_debug_gnu Checking test 214 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.590928 - 0: The maximum resident set size (KB) = 920788 + 0: The total amount of wall time = 157.011734 + 0: The maximum resident set size (KB) = 909532 Test 214 rap_clm_lake_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/gnv1_c96_no_nest_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/gnv1_c96_no_nest_debug_gnu Checking test 215 gnv1_c96_no_nest_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7150,26 +7150,26 @@ Checking test 215 gnv1_c96_no_nest_debug_gnu results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.469808 - 0: The maximum resident set size (KB) = 917404 + 0: The total amount of wall time = 236.016272 + 0: The maximum resident set size (KB) = 912340 Test 215 gnv1_c96_no_nest_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_wam_debug_gnu Checking test 216 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 136.635475 - 0: The maximum resident set size (KB) = 239948 + 0: The total amount of wall time = 140.010691 + 0: The maximum resident set size (KB) = 246124 Test 216 control_wam_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_dyn32_phy32_gnu Checking test 217 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7216,14 +7216,14 @@ Checking test 217 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 722.993785 - 0: The maximum resident set size (KB) = 748968 + 0: The total amount of wall time = 697.287976 + 0: The maximum resident set size (KB) = 754972 Test 217 rap_control_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_dyn32_phy32_gnu Checking test 218 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7270,14 +7270,14 @@ Checking test 218 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 359.609540 - 0: The maximum resident set size (KB) = 746068 + 0: The total amount of wall time = 353.781436 + 0: The maximum resident set size (KB) = 748576 Test 218 hrrr_control_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_2threads_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_2threads_dyn32_phy32_gnu Checking test 219 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7324,14 +7324,14 @@ Checking test 219 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 632.459882 - 0: The maximum resident set size (KB) = 804272 + 0: The total amount of wall time = 625.738371 + 0: The maximum resident set size (KB) = 809180 Test 219 rap_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_2threads_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_2threads_dyn32_phy32_gnu Checking test 220 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7378,14 +7378,14 @@ Checking test 220 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 313.536683 - 0: The maximum resident set size (KB) = 800500 + 0: The total amount of wall time = 311.187570 + 0: The maximum resident set size (KB) = 808296 Test 220 hrrr_control_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_decomp_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_decomp_dyn32_phy32_gnu Checking test 221 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7432,14 +7432,14 @@ Checking test 221 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 355.715202 - 0: The maximum resident set size (KB) = 744856 + 0: The total amount of wall time = 349.523368 + 0: The maximum resident set size (KB) = 750092 Test 221 hrrr_control_decomp_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_restart_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_restart_dyn32_phy32_gnu Checking test 222 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7478,28 +7478,28 @@ Checking test 222 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 532.116378 - 0: The maximum resident set size (KB) = 593044 + 0: The total amount of wall time = 521.143828 + 0: The maximum resident set size (KB) = 600744 Test 222 rap_restart_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_restart_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_restart_dyn32_phy32_gnu Checking test 223 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 186.996793 - 0: The maximum resident set size (KB) = 581776 + 0: The total amount of wall time = 186.085246 + 0: The maximum resident set size (KB) = 588128 Test 223 hrrr_control_restart_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_control_gnu Checking test 224 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7515,40 +7515,40 @@ Checking test 224 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 242.240747 - 0: The maximum resident set size (KB) = 896332 + 0: The total amount of wall time = 241.412028 + 0: The maximum resident set size (KB) = 901540 Test 224 conus13km_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_2threads_gnu Checking test 225 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 104.257503 - 0: The maximum resident set size (KB) = 934436 + 0: The total amount of wall time = 100.102434 + 0: The maximum resident set size (KB) = 936780 Test 225 conus13km_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_restart_mismatch_gnu Checking test 226 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 130.210370 - 0: The maximum resident set size (KB) = 597772 + 0: The total amount of wall time = 128.578473 + 0: The maximum resident set size (KB) = 597684 Test 226 conus13km_restart_mismatch_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_dyn64_phy32_gnu Checking test 227 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7595,42 +7595,42 @@ Checking test 227 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 407.573782 - 0: The maximum resident set size (KB) = 787936 + 0: The total amount of wall time = 412.881244 + 0: The maximum resident set size (KB) = 782176 Test 227 rap_control_dyn64_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_debug_dyn32_phy32_gnu Checking test 228 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 141.186686 - 0: The maximum resident set size (KB) = 767728 + 0: The total amount of wall time = 143.681795 + 0: The maximum resident set size (KB) = 769436 Test 228 rap_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_debug_dyn32_phy32_gnu Checking test 229 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.454383 - 0: The maximum resident set size (KB) = 765888 + 0: The total amount of wall time = 137.751576 + 0: The maximum resident set size (KB) = 770472 Test 229 hrrr_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_debug_gnu Checking test 230 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7644,14 +7644,14 @@ Checking test 230 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 423.189489 - 0: The maximum resident set size (KB) = 917032 + 0: The total amount of wall time = 419.093534 + 0: The maximum resident set size (KB) = 923976 Test 230 conus13km_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_debug_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_debug_qr_gnu Checking test 231 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7665,56 +7665,56 @@ Checking test 231 conus13km_debug_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 422.997788 - 0: The maximum resident set size (KB) = 629648 + 0: The total amount of wall time = 413.248800 + 0: The maximum resident set size (KB) = 637896 Test 231 conus13km_debug_qr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_debug_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_debug_2threads_gnu Checking test 232 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 256.988425 - 0: The maximum resident set size (KB) = 952360 + 0: The total amount of wall time = 249.949257 + 0: The maximum resident set size (KB) = 957152 Test 232 conus13km_debug_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/conus13km_radar_tten_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_radar_tten_debug_gnu Checking test 233 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 426.294677 - 0: The maximum resident set size (KB) = 984060 + 0: The total amount of wall time = 425.920412 + 0: The maximum resident set size (KB) = 987804 Test 233 conus13km_radar_tten_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/rap_control_dyn64_phy32_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_dyn64_phy32_debug_gnu Checking test 234 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.664270 - 0: The maximum resident set size (KB) = 786756 + 0: The total amount of wall time = 147.612416 + 0: The maximum resident set size (KB) = 795120 Test 234 rap_control_dyn64_phy32_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_p8_gnu Checking test 235 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7779,14 +7779,14 @@ Checking test 235 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 638.429251 - 0: The maximum resident set size (KB) = 1504780 + 0: The total amount of wall time = 645.579045 + 0: The maximum resident set size (KB) = 1509272 Test 235 cpld_control_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_nowave_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_nowave_noaero_p8_gnu Checking test 236 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7848,14 +7848,14 @@ Checking test 236 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 385.793258 - 0: The maximum resident set size (KB) = 1404384 + 0: The total amount of wall time = 379.838088 + 0: The maximum resident set size (KB) = 1408296 Test 236 cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_debug_p8_gnu Checking test 237 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7908,14 +7908,14 @@ Checking test 237 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 354.460625 - 0: The maximum resident set size (KB) = 1516712 + 0: The total amount of wall time = 353.337221 + 0: The maximum resident set size (KB) = 1523796 Test 237 cpld_debug_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_pdlib_p8_gnu Checking test 238 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7979,14 +7979,14 @@ Checking test 238 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1317.508252 - 0: The maximum resident set size (KB) = 1380512 + 0: The total amount of wall time = 1302.771362 + 0: The maximum resident set size (KB) = 1380740 Test 238 cpld_control_pdlib_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_debug_pdlib_p8_gnu Checking test 239 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -8038,25 +8038,25 @@ Checking test 239 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 763.107828 - 0: The maximum resident set size (KB) = 1384888 + 0: The total amount of wall time = 766.871937 + 0: The maximum resident set size (KB) = 1387344 Test 239 cpld_debug_pdlib_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_16155/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_control_cfsr_gnu Checking test 240 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 174.411495 - 0: The maximum resident set size (KB) = 697080 + 0: The total amount of wall time = 173.910316 + 0: The maximum resident set size (KB) = 695216 Test 240 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Sat Feb 3 09:42:23 UTC 2024 -Elapsed time: 17h:14m:00s. Have a nice day! +Mon Feb 5 18:54:04 UTC 2024 +Elapsed time: 02h:49m:10s. Have a nice day! From c97930c56ab98a636f891e12c1ce28c64d24b050 Mon Sep 17 00:00:00 2001 From: Bin Liu Date: Mon, 5 Feb 2024 20:23:10 +0000 Subject: [PATCH 63/63] Restore submodules CMEPS-interface/CMEPS and CDEPS-interface/CDEPS. --- .gitmodules | 8 ++++---- CDEPS-interface/CDEPS | 2 +- CMEPS-interface/CMEPS | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitmodules b/.gitmodules index 34d5d89aa6..a3775fc12d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -16,8 +16,8 @@ branch = develop [submodule "CMEPS"] path = CMEPS-interface/CMEPS - url = https://github.com/uturuncoglu/CMEPS - branch = feature/inline + url = https://github.com/NOAA-EMC/CMEPS + branch = emc/develop [submodule "HYCOM"] path = HYCOM-interface/HYCOM url = https://github.com/NOAA-EMC/HYCOM-src @@ -32,8 +32,8 @@ branch = emc/develop [submodule "CDEPS"] path = CDEPS-interface/CDEPS - url = https://github.com/uturuncoglu/CDEPS - branch = feature/mask + url = https://github.com/NOAA-EMC/CDEPS + branch = develop [submodule "GOCART"] path = GOCART url = https://github.com/GEOS-ESM/GOCART diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index 66cc55363e..3d7067a523 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit 66cc55363eafc1141d99101a81f34ce05fb50b3e +Subproject commit 3d7067a523b8557058755289e4275f5f5c985daf diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index c9c4c23b3c..624920ddbd 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit c9c4c23b3c3b079dfeb62197a8b9f49c2e105ec7 +Subproject commit 624920ddbd819c76ec37591c24e872308201810e