From a2088bf0e44736e50248ec4a9bc6ab3e5f19018e Mon Sep 17 00:00:00 2001 From: HelinWei-NOAA <48133472+HelinWei-NOAA@users.noreply.github.com> Date: Wed, 19 Jul 2023 13:07:11 -0400 Subject: [PATCH] Land surface upgrades for HR2 (#1777) * add iopt_diag for 2m t/q diagnostic option * land surface upgrades for hr2 * fixed a typo for soil color file flag * change FNSOCC setting * update cmake of NOAHMP-interface * soil data for datm_cdeps_lnd_gswp test * Update rt.conf remove baselines for hrrr_control_qr --- FV3 | 2 +- NOAHMP-interface/CMakeLists.txt | 4 +- NOAHMP-interface/noahmp | 2 +- tests/bl_date.conf | 2 +- tests/default_vars.sh | 3 + tests/detect_machine.sh | 2 +- tests/fv3_conf/noahmp_run.IN | 1 + tests/logs/RegressionTests_acorn.log | 1757 +++++++++------- tests/logs/RegressionTests_gaea.log | 1476 ++++++------- tests/logs/RegressionTests_hera.log | 2440 +++++++++++----------- tests/logs/RegressionTests_jet.log | 1453 ++++++------- tests/logs/RegressionTests_orion.log | 1967 ++++++++--------- tests/logs/RegressionTests_wcoss2.log | 1719 +++++++-------- tests/parm/control.nml.IN | 2 + tests/parm/control_ca.nml.IN | 2 + tests/parm/control_csawmg.nml.IN | 2 + tests/parm/control_flake.nml.IN | 2 + tests/parm/control_gdas.nml.IN | 2 + tests/parm/control_gfsv17.nml.IN | 2 + tests/parm/control_noahmp.nml.IN | 2 + tests/parm/control_ugwpv1.nml.IN | 2 + tests/parm/cpld_control.nml.IN | 2 + tests/parm/cpt.nml.IN | 2 + tests/parm/csawmg3shoc127.nml.IN | 2 + tests/parm/csawmgshoc.nml.IN | 1 + tests/parm/input_global_hafs.nml.IN | 1 + tests/parm/input_nest02.nml.IN | 1 + tests/parm/input_nest_hafs.nml.IN | 1 + tests/parm/input_regional_hafs.nml.IN | 1 + tests/parm/merra2_thompson.nml.IN | 2 + tests/parm/noahmptable.tbl | 780 +++++++ tests/parm/rap.nml.IN | 1 + tests/parm/regional_stoch.nml.IN | 1 + tests/parm/stretched-input.nml.IN | 1 + tests/parm/stretched-nest-input.nml.IN | 1 + tests/parm/wam.nml.IN | 1 + tests/rt.conf | 4 +- tests/run_test.sh | 4 + tests/tests/atmaero_control_p8 | 2 + tests/tests/atmaero_control_p8_rad | 2 + tests/tests/atmaero_control_p8_rad_micro | 2 + tests/tests/atmwav_control_noaero_p8 | 2 + tests/tests/control_2threads_p8 | 4 +- tests/tests/control_debug_p8 | 2 + tests/tests/control_decomp_p8 | 2 + tests/tests/control_p8 | 2 + tests/tests/control_p8_atmlnd_sbs | 2 + tests/tests/control_p8_faster | 2 + tests/tests/control_p8_lndp | 2 + tests/tests/control_p8_mynn | 2 + tests/tests/control_p8_rrtmgp | 2 + tests/tests/control_qr_p8 | 2 + tests/tests/control_restart_p8 | 2 + tests/tests/control_restart_qr_p8 | 2 + tests/tests/cpld_bmark_p8 | 1 + tests/tests/cpld_bmark_p8_35d | 1 + tests/tests/cpld_control_c192_p8 | 1 + tests/tests/cpld_control_c48 | 1 + tests/tests/cpld_restart_bmark_p8 | 1 + tests/tests/cpld_restart_c192_p8 | 1 + tests/tests/cpld_restart_c48 | 1 + tests/tests/cpld_warmstart_c48 | 1 + tests/tests/merra2_thompson | 2 + 63 files changed, 6240 insertions(+), 5454 deletions(-) create mode 100644 tests/parm/noahmptable.tbl diff --git a/FV3 b/FV3 index 67e146d3a7..e7dc085032 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 67e146d3a7a7f4183975ad5380bb91e25fc55f03 +Subproject commit e7dc085032e072cc075d060ef654a0a6fe663956 diff --git a/NOAHMP-interface/CMakeLists.txt b/NOAHMP-interface/CMakeLists.txt index 008327d573..4304d831a7 100644 --- a/NOAHMP-interface/CMakeLists.txt +++ b/NOAHMP-interface/CMakeLists.txt @@ -21,8 +21,8 @@ list(APPEND _noahmp_ccpp_files noahmp/drivers/ccpp/noahmpdrv.F90 noahmp/drivers/ccpp/physcons.F90) # NoahMP -list(APPEND _noahmp_files noahmp/src/module_sf_noahmplsm.f90 - noahmp/src/module_sf_noahmp_glacier.f90) +list(APPEND _noahmp_files noahmp/src/module_sf_noahmplsm.F90 + noahmp/src/module_sf_noahmp_glacier.F90) #------------------------------------------------------------------------------ # Set CCPP flags for C/C++/Fortran preprocessor diff --git a/NOAHMP-interface/noahmp b/NOAHMP-interface/noahmp index e1260f1ee7..569e354aba 160000 --- a/NOAHMP-interface/noahmp +++ b/NOAHMP-interface/noahmp @@ -1 +1 @@ -Subproject commit e1260f1ee711f66a1141010d13511a69c0f8637b +Subproject commit 569e354ababbde7a7cd68647533769a5c966468d diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 9b5041d249..489cf12f4a 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1,2 +1,2 @@ -export BL_DATE=20230705 +export BL_DATE=20230713 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 4128069179..2b2b7beb1b 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -531,6 +531,7 @@ export FHZERO=6 export FNALBC="'global_snowfree_albedo.bosu.t126.384.190.rg.grb'" export FNVETC="'global_vegtype.igbp.t126.384.190.rg.grb'" export FNSOTC="'global_soiltype.statsgo.t126.384.190.rg.grb'" +export FNSOCC="''" export FNSMCC="'global_soilmgldas.t126.384.190.grb'" export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'" export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'" @@ -738,6 +739,7 @@ export IOPT_STC=3 # P8 export IOPT_SFC=3 export IOPT_TRS=2 +export IOPT_DIAG=2 # FV3 P7 settings export D2_BG_K1=0.20 @@ -802,6 +804,7 @@ export FNTG3C="'C96.substrate_temperature.tileX.nc'" export FNVEGC="'C96.vegetation_greenness.tileX.nc'" export FNVETC="'C96.vegetation_type.tileX.nc'" export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSOCC="'C96.soil_color.tileX.nc'" export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FNVMNC="'C96.vegetation_greenness.tileX.nc'" diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 96c0baae3f..aded0b093c 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -105,7 +105,7 @@ case $(hostname -f) in esac -case $(echo $PW_CSP) in +case $(echo $PW_CSP:-nono) in aws) MACHINE_ID=aws ;; ### parallelworks aws google) MACHINE_ID=gcp ;; ### parallelworks gcp diff --git a/tests/fv3_conf/noahmp_run.IN b/tests/fv3_conf/noahmp_run.IN index 00efc6e370..2a7711070c 100644 --- a/tests/fv3_conf/noahmp_run.IN +++ b/tests/fv3_conf/noahmp_run.IN @@ -11,6 +11,7 @@ rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/ufs-land_C96_init_fields.tile6.nc C96.ini rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.maximum_snow_albedo.tile*.nc . rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.slope_type.tile*.nc . rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.soil_type.tile*.nc . +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.soil_color.tile*.nc . rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.substrate_temperature.tile*.nc . rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.vegetation_greenness.tile*.nc . rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.vegetation_type.tile*.nc . diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 57b079ba3a..2485d32be3 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,55 +1,55 @@ -Mon Jul 10 15:54:39 UTC 2023 +Fri Jul 14 16:13:12 UTC 2023 Start Regression test -Testing UFSWM Hash: b183d653c293e1439c2d0c5c1c2c8aae48dd8f20 +Testing UFSWM Hash: 328cb7309d2abb5a35b24cd605c9c867a6c32152 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 5840cd1931e2e32b9dfded0c19049d0f1ec3d04c ../CICE-interface/CICE (CICE6.0.0-440-g5840cd1) 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2295-g9923d6d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - b8ee3bd92ea9e47707c428cc666b47456fd20813 ../FV3 (remotes/origin/rrfs-32bit-physics) + b6901a95012bfe2fb65fc2bd86a67749f7d80441 ../FV3 (remotes/origin/hr2_land1) b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) - e1260f1ee711f66a1141010d13511a69c0f8637b ../NOAHMP-interface/noahmp (v3.7.1-292-ge1260f1) + 8dbe01268bd76a0c1860200d2fc152aa600e149f ../NOAHMP-interface/noahmp (v3.7.1-302-g8dbe012) c4b116886b5ef9af5fb4942d7161074df3402732 ../WW3 (6.07.1-325-gc4b11688) 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atmaero_intel elapsed time 475 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 501 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 709 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 731 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 611 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 909 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 715 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 1057 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 793 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 988 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 797 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 315 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 659 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 276 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 687 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 768 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile ifi_intel elapsed time 1090 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 219 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 762 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 1323 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 349 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 988 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 513 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 509 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1073 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1125 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 558 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 534 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 585 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 1044 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-20230705/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 479 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 357 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 466 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 1147 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 988 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 580 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 636 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 1067 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 700 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 1410 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 166 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 254 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 173 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 539 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 364 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 594 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 632 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile ifi_intel elapsed time 444 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 590 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 597 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=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 379 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 583 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 724 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 517 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 727 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 825 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1048 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 1839 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 543 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 226 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 989 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-20230713/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -114,14 +114,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.967175 -The maximum resident set size (KB) = 2943124 +The total amount of wall time = 325.618614 +The maximum resident set size (KB) = 2944036 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/cpld_control_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -185,14 +185,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 = 246.063217 -The maximum resident set size (KB) = 1548768 +The total amount of wall time = 246.861729 +The maximum resident set size (KB) = 1550436 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/cpld_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -257,14 +257,14 @@ Checking test 003 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 = 380.477737 -The maximum resident set size (KB) = 2975460 +The total amount of wall time = 376.351116 +The maximum resident set size (KB) = 2973560 Test 003 cpld_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/cpld_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -317,14 +317,14 @@ Checking test 004 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 = 221.143124 -The maximum resident set size (KB) = 2858344 +The total amount of wall time = 221.827994 +The maximum resident set size (KB) = 2861364 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/cpld_control_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -389,14 +389,14 @@ Checking test 005 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 = 378.050501 -The maximum resident set size (KB) = 2987428 +The total amount of wall time = 375.998336 +The maximum resident set size (KB) = 2985388 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/cpld_restart_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -449,14 +449,14 @@ Checking test 006 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 = 225.179203 -The maximum resident set size (KB) = 2872712 +The total amount of wall time = 225.601142 +The maximum resident set size (KB) = 2873412 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/cpld_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -509,14 +509,14 @@ Checking test 007 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 = 357.274214 -The maximum resident set size (KB) = 3280812 +The total amount of wall time = 353.814082 +The maximum resident set size (KB) = 3281772 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/cpld_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -569,14 +569,14 @@ Checking test 008 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 = 372.617385 -The maximum resident set size (KB) = 2967768 +The total amount of wall time = 373.016904 +The maximum resident set size (KB) = 2974104 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/cpld_mpi_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -629,14 +629,14 @@ Checking test 009 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 = 310.573440 -The maximum resident set size (KB) = 2903268 +The total amount of wall time = 308.969852 +The maximum resident set size (KB) = 2906160 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -701,14 +701,14 @@ Checking test 010 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 = 378.854393 -The maximum resident set size (KB) = 2972860 +The total amount of wall time = 376.825271 +The maximum resident set size (KB) = 2974216 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/cpld_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -772,14 +772,14 @@ Checking test 011 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 275.982507 -The maximum resident set size (KB) = 1572288 +The total amount of wall time = 281.882395 +The maximum resident set size (KB) = 1571684 Test 011 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_control_nowave_noaero_p8_intel Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -841,14 +841,14 @@ Checking test 012 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 = 289.938175 -The maximum resident set size (KB) = 1626108 +The total amount of wall time = 295.152830 +The maximum resident set size (KB) = 1619808 Test 012 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_control_noaero_p8_agrid_intel Checking test 013 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -910,14 +910,14 @@ Checking test 013 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 = 297.168299 -The maximum resident set size (KB) = 1624656 +The total amount of wall time = 301.390114 +The maximum resident set size (KB) = 1620816 Test 013 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/cpld_control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_control_c48_intel Checking test 014 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -967,14 +967,14 @@ Checking test 014 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 = 426.654349 -The maximum resident set size (KB) = 2627976 +The total amount of wall time = 426.034999 +The maximum resident set size (KB) = 2628024 Test 014 cpld_control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/cpld_control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_control_p8_faster_intel Checking test 015 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1039,14 +1039,14 @@ Checking test 015 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 = 366.939676 -The maximum resident set size (KB) = 2978380 +The total amount of wall time = 369.432029 +The maximum resident set size (KB) = 2972052 Test 015 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_flake_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_flake_intel Checking test 016 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1057,14 +1057,14 @@ Checking test 016 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 213.494527 -The maximum resident set size (KB) = 563092 +The total amount of wall time = 214.750411 +The maximum resident set size (KB) = 567100 Test 016 control_flake_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_CubedSphereGrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_CubedSphereGrid_intel Checking test 017 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1091,14 +1091,14 @@ Checking test 017 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 128.492273 -The maximum resident set size (KB) = 513340 +The total amount of wall time = 129.566579 +The maximum resident set size (KB) = 518148 Test 017 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_latlon_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_latlon_intel Checking test 018 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1109,14 +1109,14 @@ Checking test 018 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.413938 -The maximum resident set size (KB) = 515172 +The total amount of wall time = 132.462580 +The maximum resident set size (KB) = 520872 Test 018 control_latlon_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_wrtGauss_netcdf_parallel_intel Checking test 019 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1127,14 +1127,14 @@ Checking test 019 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.048997 -The maximum resident set size (KB) = 515712 +The total amount of wall time = 134.114608 +The maximum resident set size (KB) = 520268 Test 019 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_c48_intel Checking test 020 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1173,14 +1173,14 @@ Checking test 020 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 = 328.172254 -The maximum resident set size (KB) = 675260 +The total amount of wall time = 326.534131 +The maximum resident set size (KB) = 676088 Test 020 control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_c192_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_c192_intel Checking test 021 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1191,14 +1191,14 @@ Checking test 021 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 523.481662 -The maximum resident set size (KB) = 616376 +The total amount of wall time = 527.035869 +The maximum resident set size (KB) = 619020 Test 021 control_c192_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_c384_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_c384_intel Checking test 022 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1209,14 +1209,14 @@ Checking test 022 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 561.463834 -The maximum resident set size (KB) = 924588 +The total amount of wall time = 561.373199 +The maximum resident set size (KB) = 930252 Test 022 control_c384_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_c384gdas_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_c384gdas_intel Checking test 023 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1259,14 +1259,14 @@ Checking test 023 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 = 491.518353 -The maximum resident set size (KB) = 1057068 +The total amount of wall time = 489.377869 +The maximum resident set size (KB) = 1061392 Test 023 control_c384gdas_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_stochy_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_stochy_intel Checking test 024 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1277,28 +1277,28 @@ Checking test 024 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.329253 -The maximum resident set size (KB) = 518752 +The total amount of wall time = 90.676559 +The maximum resident set size (KB) = 522628 Test 024 control_stochy_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_stochy_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_stochy_restart_intel Checking test 025 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.228202 -The maximum resident set size (KB) = 289180 +The total amount of wall time = 50.187997 +The maximum resident set size (KB) = 291912 Test 025 control_stochy_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_lndp_intel Checking test 026 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1309,14 +1309,14 @@ Checking test 026 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 82.893605 -The maximum resident set size (KB) = 518960 +The total amount of wall time = 83.780115 +The maximum resident set size (KB) = 521780 Test 026 control_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_iovr4_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_iovr4_intel Checking test 027 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1331,14 +1331,14 @@ Checking test 027 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.460722 -The maximum resident set size (KB) = 516788 +The total amount of wall time = 136.841520 +The maximum resident set size (KB) = 520720 Test 027 control_iovr4_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_iovr5_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_iovr5_intel Checking test 028 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1353,14 +1353,14 @@ Checking test 028 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.904901 -The maximum resident set size (KB) = 514140 +The total amount of wall time = 135.247773 +The maximum resident set size (KB) = 516868 Test 028 control_iovr5_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_p8_intel Checking test 029 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1407,14 +1407,14 @@ Checking test 029 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 = 171.113426 -The maximum resident set size (KB) = 1494124 +The total amount of wall time = 171.223927 +The maximum resident set size (KB) = 1496012 Test 029 control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_restart_p8_intel Checking test 030 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1453,14 +1453,14 @@ Checking test 030 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.438741 -The maximum resident set size (KB) = 653676 +The total amount of wall time = 93.755940 +The maximum resident set size (KB) = 662276 Test 030 control_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_qr_p8_intel Checking test 031 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1507,14 +1507,14 @@ Checking test 031 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 169.057464 -The maximum resident set size (KB) = 1494336 +The total amount of wall time = 169.827728 +The maximum resident set size (KB) = 1500084 Test 031 control_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_restart_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_restart_qr_p8_intel Checking test 032 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1553,14 +1553,14 @@ Checking test 032 control_restart_qr_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.778237 -The maximum resident set size (KB) = 664152 +The total amount of wall time = 92.965125 +The maximum resident set size (KB) = 670736 Test 032 control_restart_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_decomp_p8_intel Checking test 033 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1603,14 +1603,14 @@ Checking test 033 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.643760 -The maximum resident set size (KB) = 1478892 +The total amount of wall time = 174.952287 +The maximum resident set size (KB) = 1486472 Test 033 control_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_2threads_p8_intel Checking test 034 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1653,14 +1653,14 @@ Checking test 034 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 = 147.243913 -The maximum resident set size (KB) = 1571804 +The total amount of wall time = 147.843978 +The maximum resident set size (KB) = 1578640 Test 034 control_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_p8_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_p8_lndp_intel Checking test 035 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1679,14 +1679,14 @@ Checking test 035 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 311.172343 -The maximum resident set size (KB) = 1490624 +The total amount of wall time = 314.430541 +The maximum resident set size (KB) = 1494056 Test 035 control_p8_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_p8_rrtmgp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_p8_rrtmgp_intel Checking test 036 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1733,14 +1733,14 @@ Checking test 036 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 226.911297 -The maximum resident set size (KB) = 1541488 +The total amount of wall time = 227.310244 +The maximum resident set size (KB) = 1545784 Test 036 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_p8_mynn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_p8_mynn_intel Checking test 037 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1787,14 +1787,14 @@ Checking test 037 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 = 171.709737 -The maximum resident set size (KB) = 1490380 +The total amount of wall time = 172.628141 +The maximum resident set size (KB) = 1498508 Test 037 control_p8_mynn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/merra2_thompson_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/merra2_thompson_intel Checking test 038 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1841,14 +1841,14 @@ Checking test 038 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.073066 -The maximum resident set size (KB) = 1492612 +The total amount of wall time = 195.281701 +The maximum resident set size (KB) = 1497080 Test 038 merra2_thompson_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/regional_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_control_intel Checking test 039 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1859,28 +1859,28 @@ Checking test 039 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 276.842892 -The maximum resident set size (KB) = 649620 +The total amount of wall time = 276.777664 +The maximum resident set size (KB) = 655360 Test 039 regional_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/regional_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_restart_intel Checking test 040 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 = 147.743579 -The maximum resident set size (KB) = 651520 +The total amount of wall time = 147.176881 +The maximum resident set size (KB) = 652676 Test 040 regional_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/regional_control_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_control_qr_intel Checking test 041 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1891,28 +1891,28 @@ Checking test 041 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 278.323430 -The maximum resident set size (KB) = 650956 +The total amount of wall time = 275.921169 +The maximum resident set size (KB) = 655276 Test 041 regional_control_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/regional_restart_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_restart_qr_intel Checking test 042 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 149.250923 -The maximum resident set size (KB) = 652484 +The total amount of wall time = 146.100407 +The maximum resident set size (KB) = 653664 Test 042 regional_restart_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/regional_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_decomp_intel Checking test 043 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1923,14 +1923,14 @@ Checking test 043 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 289.095418 -The maximum resident set size (KB) = 653272 +The total amount of wall time = 300.955557 +The maximum resident set size (KB) = 657752 Test 043 regional_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/regional_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_2threads_intel Checking test 044 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1941,14 +1941,14 @@ Checking test 044 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 162.931766 -The maximum resident set size (KB) = 691676 +The total amount of wall time = 162.750794 +The maximum resident set size (KB) = 699480 Test 044 regional_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/regional_noquilt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_noquilt_intel Checking test 045 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1956,14 +1956,14 @@ Checking test 045 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 = 274.946814 -The maximum resident set size (KB) = 641352 +The total amount of wall time = 274.721215 +The maximum resident set size (KB) = 645704 Test 045 regional_noquilt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/regional_2dwrtdecomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_2dwrtdecomp_intel Checking test 046 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1974,14 +1974,14 @@ Checking test 046 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 275.556575 -The maximum resident set size (KB) = 649472 +The total amount of wall time = 275.026614 +The maximum resident set size (KB) = 653492 Test 046 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/regional_wofs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_wofs_intel Checking test 047 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1992,14 +1992,14 @@ Checking test 047 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 355.443273 -The maximum resident set size (KB) = 340088 +The total amount of wall time = 353.791106 +The maximum resident set size (KB) = 344620 Test 047 regional_wofs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/regional_ifi_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_ifi_control_intel Checking test 048 regional_ifi_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2010,14 +2010,14 @@ Checking test 048 regional_ifi_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 308.355770 -The maximum resident set size (KB) = 651380 +The total amount of wall time = 310.474156 +The maximum resident set size (KB) = 651040 Test 048 regional_ifi_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/regional_ifi_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_ifi_decomp_intel Checking test 049 regional_ifi_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2028,14 +2028,14 @@ Checking test 049 regional_ifi_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 322.359229 -The maximum resident set size (KB) = 654064 +The total amount of wall time = 325.368989 +The maximum resident set size (KB) = 651416 Test 049 regional_ifi_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/regional_ifi_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_ifi_2threads_intel Checking test 050 regional_ifi_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2046,14 +2046,14 @@ Checking test 050 regional_ifi_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 183.224683 -The maximum resident set size (KB) = 694276 +The total amount of wall time = 187.082142 +The maximum resident set size (KB) = 692548 Test 050 regional_ifi_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_control_intel Checking test 051 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2100,14 +2100,14 @@ Checking test 051 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 = 403.494587 -The maximum resident set size (KB) = 895112 +The total amount of wall time = 404.194153 +The maximum resident set size (KB) = 894328 Test 051 rap_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_spp_sppt_shum_skeb_intel Checking test 052 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2118,14 +2118,14 @@ Checking test 052 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 230.419520 -The maximum resident set size (KB) = 993376 +The total amount of wall time = 233.812103 +The maximum resident set size (KB) = 984836 Test 052 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_decomp_intel Checking test 053 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2172,14 +2172,14 @@ Checking test 053 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 417.561648 -The maximum resident set size (KB) = 896036 +The total amount of wall time = 416.358238 +The maximum resident set size (KB) = 893488 Test 053 rap_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_2threads_intel Checking test 054 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2226,14 +2226,14 @@ Checking test 054 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 = 364.476167 -The maximum resident set size (KB) = 968784 +The total amount of wall time = 363.094072 +The maximum resident set size (KB) = 971884 Test 054 rap_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_restart_intel Checking test 055 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2272,14 +2272,14 @@ Checking test 055 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 = 205.020141 -The maximum resident set size (KB) = 641612 +The total amount of wall time = 205.870936 +The maximum resident set size (KB) = 635832 Test 055 rap_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_sfcdiff_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_sfcdiff_intel Checking test 056 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2326,14 +2326,14 @@ Checking test 056 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.933989 -The maximum resident set size (KB) = 895012 +The total amount of wall time = 410.304274 +The maximum resident set size (KB) = 895196 Test 056 rap_sfcdiff_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_sfcdiff_decomp_intel Checking test 057 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2380,14 +2380,14 @@ Checking test 057 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 423.369103 -The maximum resident set size (KB) = 896192 +The total amount of wall time = 422.941106 +The maximum resident set size (KB) = 893592 Test 057 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_sfcdiff_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_sfcdiff_restart_intel Checking test 058 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2426,14 +2426,14 @@ Checking test 058 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 = 298.107206 -The maximum resident set size (KB) = 640720 +The total amount of wall time = 298.363479 +The maximum resident set size (KB) = 641324 Test 058 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hrrr_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_intel Checking test 059 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2469,25 +2469,25 @@ Checking test 059 hrrr_control_intel results .... Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......NOT OK Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......NOT OK Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......NOT OK -The total amount of wall time = 391.769878 -The maximum resident set size (KB) = 895408 +The total amount of wall time = 390.926928 +The maximum resident set size (KB) = 893336 -Test 059 hrrr_control_intel PASS +Test 059 hrrr_control_intel FAIL Tries: 2 -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hrrr_control_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_qr_intel Checking test 060 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2523,25 +2523,25 @@ Checking test 060 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......NOT OK Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......NOT OK -The total amount of wall time = 383.753917 -The maximum resident set size (KB) = 902880 +The total amount of wall time = 383.346414 +The maximum resident set size (KB) = 897792 -Test 060 hrrr_control_qr_intel PASS +Test 060 hrrr_control_qr_intel FAIL Tries: 2 -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hrrr_control_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_decomp_intel Checking test 061 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2577,25 +2577,25 @@ Checking test 061 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......NOT OK Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......NOT OK Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......NOT OK -The total amount of wall time = 403.541520 -The maximum resident set size (KB) = 890688 +The total amount of wall time = 401.769842 +The maximum resident set size (KB) = 889180 -Test 061 hrrr_control_decomp_intel PASS +Test 061 hrrr_control_decomp_intel FAIL Tries: 2 -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hrrr_control_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_2threads_intel Checking test 062 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2631,53 +2631,25 @@ Checking test 062 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......NOT OK Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......NOT OK Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 348.135532 -The maximum resident set size (KB) = 960880 - -Test 062 hrrr_control_2threads_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hrrr_control_restart_intel -Checking test 063 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 = 285.954275 -The maximum resident set size (KB) = 637464 - -Test 063 hrrr_control_restart_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hrrr_control_restart_qr_intel -Checking test 064 hrrr_control_restart_qr_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......NOT OK -The total amount of wall time = 286.689000 -The maximum resident set size (KB) = 653700 +The total amount of wall time = 349.878228 +The maximum resident set size (KB) = 969848 -Test 064 hrrr_control_restart_qr_intel PASS +Test 062 hrrr_control_2threads_intel FAIL Tries: 2 -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rrfs_v1beta_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_v1beta_intel Checking test 065 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2724,14 +2696,14 @@ Checking test 065 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.673575 -The maximum resident set size (KB) = 892416 +The total amount of wall time = 400.200622 +The maximum resident set size (KB) = 889912 Test 065 rrfs_v1beta_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rrfs_v1nssl_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_v1nssl_intel Checking test 066 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2746,14 +2718,14 @@ Checking test 066 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 463.861159 -The maximum resident set size (KB) = 582008 +The total amount of wall time = 471.773258 +The maximum resident set size (KB) = 581036 Test 066 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_v1nssl_nohailnoccn_intel Checking test 067 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2768,14 +2740,14 @@ Checking test 067 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 453.805568 -The maximum resident set size (KB) = 573096 +The total amount of wall time = 456.491566 +The maximum resident set size (KB) = 571196 Test 067 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 068 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2791,14 +2763,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 137.926472 -The maximum resident set size (KB) = 796336 +The total amount of wall time = 137.759033 +The maximum resident set size (KB) = 793224 Test 068 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 069 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2814,14 +2786,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm_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 = 134.887776 -The maximum resident set size (KB) = 744080 +The total amount of wall time = 133.836523 +The maximum resident set size (KB) = 738024 Test 069 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2830,14 +2802,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 93.432519 -The maximum resident set size (KB) = 813928 +The total amount of wall time = 93.433249 +The maximum resident set size (KB) = 798152 Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rrfs_conus13km_hrrr_warm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_conus13km_hrrr_warm_intel Checking test 071 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2853,14 +2825,14 @@ Checking test 071 rrfs_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 124.448286 -The maximum resident set size (KB) = 782484 +The total amount of wall time = 124.142380 +The maximum resident set size (KB) = 777172 Test 071 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 072 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2869,38 +2841,38 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 137.042827 -The maximum resident set size (KB) = 800952 +The total amount of wall time = 139.327382 +The maximum resident set size (KB) = 796320 Test 072 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 073 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 81.661383 -The maximum resident set size (KB) = 791384 +The total amount of wall time = 81.258259 +The maximum resident set size (KB) = 791608 Test 073 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 074 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 100.036893 -The maximum resident set size (KB) = 791356 +The total amount of wall time = 99.121138 +The maximum resident set size (KB) = 787748 Test 074 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_csawmg_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_csawmg_intel Checking test 075 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2911,14 +2883,14 @@ Checking test 075 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 332.362304 -The maximum resident set size (KB) = 584364 +The total amount of wall time = 334.237801 +The maximum resident set size (KB) = 588388 Test 075 control_csawmg_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_csawmgt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_csawmgt_intel Checking test 076 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2929,14 +2901,14 @@ Checking test 076 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 329.623342 -The maximum resident set size (KB) = 590244 +The total amount of wall time = 331.581267 +The maximum resident set size (KB) = 583220 Test 076 control_csawmgt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_ras_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_ras_intel Checking test 077 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2947,26 +2919,26 @@ Checking test 077 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 181.485160 -The maximum resident set size (KB) = 549844 +The total amount of wall time = 182.193094 +The maximum resident set size (KB) = 548932 Test 077 control_ras_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_wam_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_wam_intel Checking test 078 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.173545 -The maximum resident set size (KB) = 272204 +The total amount of wall time = 118.118368 +The maximum resident set size (KB) = 271452 Test 078 control_wam_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_p8_faster_intel Checking test 079 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3013,14 +2985,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 = 167.172323 -The maximum resident set size (KB) = 1482396 +The total amount of wall time = 165.280740 +The maximum resident set size (KB) = 1488084 Test 079 control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/regional_control_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_control_faster_intel Checking test 080 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3031,56 +3003,56 @@ Checking test 080 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 269.693659 -The maximum resident set size (KB) = 648496 +The total amount of wall time = 268.958244 +The maximum resident set size (KB) = 652436 Test 080 regional_control_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 906.815935 -The maximum resident set size (KB) = 822876 +The total amount of wall time = 891.720645 +The maximum resident set size (KB) = 822784 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 082 rrfs_smoke_conus13km_hrrr_warm_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 = 518.333615 -The maximum resident set size (KB) = 829860 +The total amount of wall time = 511.671289 +The maximum resident set size (KB) = 828092 Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_conus13km_hrrr_warm_debug_intel Checking test 083 rrfs_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 801.080408 -The maximum resident set size (KB) = 804528 +The total amount of wall time = 799.495329 +The maximum resident set size (KB) = 807364 Test 083 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_CubedSphereGrid_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_CubedSphereGrid_debug_intel Checking test 084 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3107,348 +3079,348 @@ Checking test 084 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.089840 -The maximum resident set size (KB) = 675932 +The total amount of wall time = 158.277879 +The maximum resident set size (KB) = 674684 Test 084 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_wrtGauss_netcdf_parallel_debug_intel Checking test 085 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 158.811811 -The maximum resident set size (KB) = 674976 +The total amount of wall time = 158.510314 +The maximum resident set size (KB) = 675764 Test 085 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_stochy_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_stochy_debug_intel Checking test 086 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.661730 -The maximum resident set size (KB) = 685656 +The total amount of wall time = 178.755021 +The maximum resident set size (KB) = 685576 Test 086 control_stochy_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_lndp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_lndp_debug_intel Checking test 087 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.368830 -The maximum resident set size (KB) = 680848 +The total amount of wall time = 160.677750 +The maximum resident set size (KB) = 678492 Test 087 control_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_csawmg_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_csawmg_debug_intel Checking test 088 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 252.715816 -The maximum resident set size (KB) = 719068 +The total amount of wall time = 251.685814 +The maximum resident set size (KB) = 720752 Test 088 control_csawmg_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_csawmgt_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_csawmgt_debug_intel Checking test 089 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 247.192213 -The maximum resident set size (KB) = 713232 +The total amount of wall time = 247.774584 +The maximum resident set size (KB) = 717372 Test 089 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_ras_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_ras_debug_intel Checking test 090 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.986671 -The maximum resident set size (KB) = 690468 +The total amount of wall time = 161.888081 +The maximum resident set size (KB) = 690048 Test 090 control_ras_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_diag_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_diag_debug_intel Checking test 091 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.444605 -The maximum resident set size (KB) = 735272 +The total amount of wall time = 163.051885 +The maximum resident set size (KB) = 730912 Test 091 control_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_debug_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_debug_p8_intel Checking test 092 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 181.223520 -The maximum resident set size (KB) = 1505668 +The total amount of wall time = 181.616834 +The maximum resident set size (KB) = 1509704 Test 092 control_debug_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/regional_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_debug_intel Checking test 093 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1042.489917 -The maximum resident set size (KB) = 674444 +The total amount of wall time = 1040.287290 +The maximum resident set size (KB) = 675920 Test 093 regional_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_control_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_control_debug_intel Checking test 094 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.116685 -The maximum resident set size (KB) = 1057404 +The total amount of wall time = 296.249468 +The maximum resident set size (KB) = 1055412 Test 094 rap_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hrrr_control_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_debug_intel Checking test 095 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.393395 -The maximum resident set size (KB) = 1049328 +The total amount of wall time = 289.211516 +The maximum resident set size (KB) = 1052956 Test 095 hrrr_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_unified_drag_suite_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_unified_drag_suite_debug_intel Checking test 096 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.606021 -The maximum resident set size (KB) = 1054084 +The total amount of wall time = 295.678996 +The maximum resident set size (KB) = 1054772 Test 096 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_diag_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_diag_debug_intel Checking test 097 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.771651 -The maximum resident set size (KB) = 1138372 +The total amount of wall time = 307.341730 +The maximum resident set size (KB) = 1136220 Test 097 rap_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_cires_ugwp_debug_intel Checking test 098 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.806634 -The maximum resident set size (KB) = 1055876 +The total amount of wall time = 302.353203 +The maximum resident set size (KB) = 1056036 Test 098 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_unified_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_unified_ugwp_debug_intel Checking test 099 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.424473 -The maximum resident set size (KB) = 1052852 +The total amount of wall time = 302.632857 +The maximum resident set size (KB) = 1056760 Test 099 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_lndp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_lndp_debug_intel Checking test 100 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.669545 -The maximum resident set size (KB) = 1057108 +The total amount of wall time = 299.056394 +The maximum resident set size (KB) = 1058232 Test 100 rap_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_progcld_thompson_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_progcld_thompson_debug_intel Checking test 101 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.163240 -The maximum resident set size (KB) = 1052420 +The total amount of wall time = 296.453343 +The maximum resident set size (KB) = 1053236 Test 101 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_noah_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_noah_debug_intel Checking test 102 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.727285 -The maximum resident set size (KB) = 1055424 +The total amount of wall time = 291.023484 +The maximum resident set size (KB) = 1053268 Test 102 rap_noah_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_sfcdiff_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_sfcdiff_debug_intel Checking test 103 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.660212 -The maximum resident set size (KB) = 1055448 +The total amount of wall time = 296.335796 +The maximum resident set size (KB) = 1056440 Test 103 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 489.078427 -The maximum resident set size (KB) = 1050640 +The total amount of wall time = 485.728343 +The maximum resident set size (KB) = 1051792 Test 104 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rrfs_v1beta_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_v1beta_debug_intel Checking test 105 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.918627 -The maximum resident set size (KB) = 1047196 +The total amount of wall time = 290.732437 +The maximum resident set size (KB) = 1048080 Test 105 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_clm_lake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_clm_lake_debug_intel Checking test 106 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 377.090858 -The maximum resident set size (KB) = 1056540 +The total amount of wall time = 353.480154 +The maximum resident set size (KB) = 1055528 Test 106 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_flake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_flake_debug_intel Checking test 107 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.269899 -The maximum resident set size (KB) = 1051388 +The total amount of wall time = 296.041019 +The maximum resident set size (KB) = 1050288 Test 107 rap_flake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_wam_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 = 297.590029 -The maximum resident set size (KB) = 304664 +The total amount of wall time = 295.740577 +The maximum resident set size (KB) = 303436 Test 108 control_wam_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 @@ -3459,14 +3431,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 = 219.798559 -The maximum resident set size (KB) = 888444 +The total amount of wall time = 219.873746 +The maximum resident set size (KB) = 895340 Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_control_dyn32_phy32_intel Checking test 110 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3513,14 +3485,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 = 337.478091 -The maximum resident set size (KB) = 775300 +The total amount of wall time = 337.394350 +The maximum resident set size (KB) = 772164 Test 110 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hrrr_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_dyn32_phy32_intel Checking test 111 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3567,14 +3539,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 = 177.563890 -The maximum resident set size (KB) = 772008 +The total amount of wall time = 178.055510 +The maximum resident set size (KB) = 773860 Test 111 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_qr_dyn32_phy32_intel Checking test 112 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3621,14 +3593,14 @@ Checking test 112 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 174.502104 -The maximum resident set size (KB) = 778452 +The total amount of wall time = 174.222357 +The maximum resident set size (KB) = 781008 Test 112 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_2threads_dyn32_phy32_intel Checking test 113 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3675,14 +3647,14 @@ Checking test 113 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 304.553660 -The maximum resident set size (KB) = 829400 +The total amount of wall time = 305.852309 +The maximum resident set size (KB) = 830100 Test 113 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_2threads_dyn32_phy32_intel Checking test 114 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3729,14 +3701,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 159.294230 -The maximum resident set size (KB) = 816708 +The total amount of wall time = 159.443133 +The maximum resident set size (KB) = 819676 Test 114 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_decomp_dyn32_phy32_intel Checking test 115 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3783,14 +3755,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.433072 -The maximum resident set size (KB) = 769436 +The total amount of wall time = 185.860504 +The maximum resident set size (KB) = 770380 Test 115 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_restart_dyn32_phy32_intel Checking test 116 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3829,42 +3801,42 @@ Checking test 116 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 247.383989 -The maximum resident set size (KB) = 609116 +The total amount of wall time = 247.219533 +The maximum resident set size (KB) = 604852 Test 116 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_restart_dyn32_phy32_intel Checking test 117 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 92.788635 -The maximum resident set size (KB) = 602872 +The total amount of wall time = 92.694020 +The maximum resident set size (KB) = 606460 Test 117 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 118 hrrr_control_restart_qr_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.518865 -The maximum resident set size (KB) = 624020 +The total amount of wall time = 92.486754 +The maximum resident set size (KB) = 620184 Test 118 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_fast_phy32_intel Checking test 119 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3880,14 +3852,14 @@ Checking test 119 rrfs_smoke_conus13km_fast_phy32_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.310644 -The maximum resident set size (KB) = 715052 +The total amount of wall time = 114.777516 +The maximum resident set size (KB) = 715488 Test 119 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 120 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3903,38 +3875,38 @@ Checking test 120 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 113.492086 -The maximum resident set size (KB) = 679292 +The total amount of wall time = 113.246590 +The maximum resident set size (KB) = 685716 Test 120 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 121 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 72.072090 -The maximum resident set size (KB) = 720128 +The total amount of wall time = 73.353283 +The maximum resident set size (KB) = 723296 Test 121 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 122 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 87.209684 -The maximum resident set size (KB) = 701856 +The total amount of wall time = 87.493076 +The maximum resident set size (KB) = 703496 Test 122 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3981,81 +3953,81 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 227.574479 -The maximum resident set size (KB) = 794060 +The total amount of wall time = 227.341720 +The maximum resident set size (KB) = 795760 Test 123 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.131777 -The maximum resident set size (KB) = 937180 +The total amount of wall time = 291.806357 +The maximum resident set size (KB) = 934936 Test 124 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 282.363231 -The maximum resident set size (KB) = 936052 +The total amount of wall time = 285.676110 +The maximum resident set size (KB) = 936396 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 = 291.111198 -The maximum resident set size (KB) = 957544 +The total amount of wall time = 291.974340 +The maximum resident set size (KB) = 953192 Test 126 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_regional_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 = 247.792607 -The maximum resident set size (KB) = 828296 +The total amount of wall time = 248.821878 +The maximum resident set size (KB) = 819312 Test 127 hafs_regional_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 = 305.832115 -The maximum resident set size (KB) = 1178900 +The total amount of wall time = 298.307353 +The maximum resident set size (KB) = 1184620 Test 128 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_regional_atm_ocn_intel Checking test 129 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4064,14 +4036,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 = 378.254899 -The maximum resident set size (KB) = 857720 +The total amount of wall time = 378.850053 +The maximum resident set size (KB) = 857040 Test 129 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_regional_atm_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_regional_atm_wav_intel Checking test 130 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4080,14 +4052,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 = 700.009535 -The maximum resident set size (KB) = 882360 +The total amount of wall time = 699.674365 +The maximum resident set size (KB) = 890216 Test 130 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_regional_atm_ocn_wav_intel Checking test 131 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4098,14 +4070,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 = 894.987138 -The maximum resident set size (KB) = 911284 +The total amount of wall time = 892.736609 +The maximum resident set size (KB) = 912956 Test 131 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_regional_1nest_atm_intel Checking test 132 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4127,14 +4099,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 = 304.987253 -The maximum resident set size (KB) = 395308 +The total amount of wall time = 304.994823 +The maximum resident set size (KB) = 396576 Test 132 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_regional_1nest_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_regional_1nest_atm_qr_intel Checking test 133 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4156,14 +4128,14 @@ Checking test 133 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 321.249227 -The maximum resident set size (KB) = 370744 +The total amount of wall time = 320.290022 +The maximum resident set size (KB) = 374148 Test 133 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_regional_telescopic_2nests_atm_intel Checking test 134 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4172,14 +4144,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 = 370.026658 -The maximum resident set size (KB) = 402740 +The total amount of wall time = 367.434487 +The maximum resident set size (KB) = 403900 Test 134 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_global_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_global_1nest_atm_intel Checking test 135 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4226,14 +4198,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 = 160.075672 -The maximum resident set size (KB) = 263072 +The total amount of wall time = 159.199843 +The maximum resident set size (KB) = 271996 Test 135 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_global_1nest_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_global_1nest_atm_qr_intel Checking test 136 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4280,14 +4252,14 @@ Checking test 136 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 164.976345 -The maximum resident set size (KB) = 273812 +The total amount of wall time = 163.612626 +The maximum resident set size (KB) = 273352 Test 136 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_global_multiple_4nests_atm_intel Checking test 137 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4369,14 +4341,14 @@ Checking test 137 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 = 454.731953 -The maximum resident set size (KB) = 348216 +The total amount of wall time = 456.757893 +The maximum resident set size (KB) = 347884 Test 137 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_global_multiple_4nests_atm_qr_intel Checking test 138 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4458,14 +4430,14 @@ Checking test 138 hafs_global_multiple_4nests_atm_qr_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 = 493.746067 -The maximum resident set size (KB) = 375760 +The total amount of wall time = 493.825533 +The maximum resident set size (KB) = 377980 Test 138 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_regional_specified_moving_1nest_atm_intel Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4474,14 +4446,14 @@ Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 203.345011 -The maximum resident set size (KB) = 410156 +The total amount of wall time = 203.160469 +The maximum resident set size (KB) = 412548 Test 139 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_regional_storm_following_1nest_atm_intel Checking test 140 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4503,14 +4475,14 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 190.263575 -The maximum resident set size (KB) = 408196 +The total amount of wall time = 190.312857 +The maximum resident set size (KB) = 407056 Test 140 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 141 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4532,14 +4504,14 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_qr_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 = 211.359816 -The maximum resident set size (KB) = 396184 +The total amount of wall time = 209.326005 +The maximum resident set size (KB) = 401304 Test 141 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 @@ -4548,42 +4520,42 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 245.377552 -The maximum resident set size (KB) = 470628 +The total amount of wall time = 244.885014 +The maximum resident set size (KB) = 475720 Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_global_storm_following_1nest_atm_intel Checking test 143 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 80.751053 -The maximum resident set size (KB) = 282816 +The total amount of wall time = 80.744324 +The maximum resident set size (KB) = 283524 Test 143 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 795.801036 -The maximum resident set size (KB) = 491856 +The total amount of wall time = 802.973696 +The maximum resident set size (KB) = 492992 Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4594,14 +4566,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 497.146644 -The maximum resident set size (KB) = 522688 +The total amount of wall time = 496.802084 +The maximum resident set size (KB) = 516804 Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_regional_docn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_regional_docn_intel Checking test 146 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4609,14 +4581,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 = 344.777849 -The maximum resident set size (KB) = 855712 +The total amount of wall time = 344.765759 +The maximum resident set size (KB) = 859424 Test 146 hafs_regional_docn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_regional_docn_oisst_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_regional_docn_oisst_intel Checking test 147 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4624,131 +4596,131 @@ 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 = 347.266805 -The maximum resident set size (KB) = 849340 +The total amount of wall time = 347.176910 +The maximum resident set size (KB) = 849464 Test 147 hafs_regional_docn_oisst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/hafs_regional_datm_cdeps_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 = 944.332487 -The maximum resident set size (KB) = 834788 +The total amount of wall time = 943.933377 +The maximum resident set size (KB) = 839624 Test 148 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/datm_cdeps_control_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/datm_cdeps_control_cfsr_intel Checking test 149 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.007382 -The maximum resident set size (KB) = 731604 +The total amount of wall time = 142.995408 +The maximum resident set size (KB) = 730976 Test 149 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/datm_cdeps_restart_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/datm_cdeps_restart_cfsr_intel Checking test 150 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 = 89.183063 -The maximum resident set size (KB) = 721180 +The total amount of wall time = 89.433910 +The maximum resident set size (KB) = 709016 Test 150 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/datm_cdeps_control_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/datm_cdeps_control_gefs_intel Checking test 151 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 = 135.888519 -The maximum resident set size (KB) = 616492 +The total amount of wall time = 135.584759 +The maximum resident set size (KB) = 611512 Test 151 datm_cdeps_control_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/datm_cdeps_iau_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_iau_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/datm_cdeps_iau_gefs_intel Checking test 152 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.923359 -The maximum resident set size (KB) = 616656 +The total amount of wall time = 137.942765 +The maximum resident set size (KB) = 617052 Test 152 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/datm_cdeps_stochy_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_stochy_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/datm_cdeps_stochy_gefs_intel Checking test 153 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 138.005387 -The maximum resident set size (KB) = 611912 +The total amount of wall time = 137.500855 +The maximum resident set size (KB) = 612480 Test 153 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/datm_cdeps_ciceC_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/datm_cdeps_ciceC_cfsr_intel Checking test 154 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.357006 -The maximum resident set size (KB) = 732136 +The total amount of wall time = 142.837120 +The maximum resident set size (KB) = 732900 Test 154 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/datm_cdeps_bulk_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_bulk_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/datm_cdeps_bulk_cfsr_intel Checking test 155 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 = 144.015486 -The maximum resident set size (KB) = 733900 +The total amount of wall time = 143.868114 +The maximum resident set size (KB) = 734120 Test 155 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/datm_cdeps_bulk_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_bulk_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/datm_cdeps_bulk_gefs_intel Checking test 156 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 = 135.393542 -The maximum resident set size (KB) = 613036 +The total amount of wall time = 134.728476 +The maximum resident set size (KB) = 614552 Test 156 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/datm_cdeps_mx025_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_mx025_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/datm_cdeps_mx025_cfsr_intel Checking test 157 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4757,14 +4729,14 @@ Checking test 157 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 = 433.584069 -The maximum resident set size (KB) = 571000 +The total amount of wall time = 443.660307 +The maximum resident set size (KB) = 569664 Test 157 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/datm_cdeps_mx025_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_mx025_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/datm_cdeps_mx025_gefs_intel Checking test 158 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4773,64 +4745,64 @@ Checking test 158 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 = 435.824684 -The maximum resident set size (KB) = 549072 +The total amount of wall time = 436.995294 +The maximum resident set size (KB) = 552304 Test 158 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/datm_cdeps_multiple_files_cfsr_intel Checking test 159 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.334688 -The maximum resident set size (KB) = 733700 +The total amount of wall time = 142.919725 +The maximum resident set size (KB) = 734996 Test 159 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/datm_cdeps_3072x1536_cfsr_intel Checking test 160 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 = 249.048807 -The maximum resident set size (KB) = 1980128 +The total amount of wall time = 249.864885 +The maximum resident set size (KB) = 1984456 Test 160 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/datm_cdeps_gfs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_gfs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/datm_cdeps_gfs_intel Checking test 161 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 = 249.307155 -The maximum resident set size (KB) = 1980508 +The total amount of wall time = 251.825179 +The maximum resident set size (KB) = 1980324 Test 161 datm_cdeps_gfs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/datm_cdeps_control_cfsr_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/datm_cdeps_control_cfsr_faster_intel Checking test 162 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.053298 -The maximum resident set size (KB) = 732160 +The total amount of wall time = 143.490434 +The maximum resident set size (KB) = 731324 Test 162 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/datm_cdeps_lnd_gswp3_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/datm_cdeps_lnd_gswp3_intel Checking test 163 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 @@ -4839,14 +4811,14 @@ Checking test 163 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 = 22.356731 -The maximum resident set size (KB) = 227188 +The total amount of wall time = 22.754082 +The maximum resident set size (KB) = 230616 Test 163 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/datm_cdeps_lnd_gswp3_rst_intel Checking test 164 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4855,14 +4827,14 @@ Checking test 164 datm_cdeps_lnd_gswp3_rst_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 = 27.543533 -The maximum resident set size (KB) = 227996 +The total amount of wall time = 27.869580 +The maximum resident set size (KB) = 233364 Test 164 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_p8_atmlnd_sbs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_p8_atmlnd_sbs_intel Checking test 165 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4947,14 +4919,14 @@ Checking test 165 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 226.715405 -The maximum resident set size (KB) = 1544372 +The total amount of wall time = 229.690604 +The maximum resident set size (KB) = 1540852 Test 165 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/atmwav_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/atmwav_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/atmwav_control_noaero_p8_intel Checking test 166 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4997,14 +4969,14 @@ Checking test 166 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 101.497070 -The maximum resident set size (KB) = 1534060 +The total amount of wall time = 105.254312 +The maximum resident set size (KB) = 1527256 Test 166 atmwav_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/control_atmwav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_atmwav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_atmwav_intel Checking test 167 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5048,14 +5020,14 @@ Checking test 167 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 90.681036 -The maximum resident set size (KB) = 539784 +The total amount of wall time = 91.463033 +The maximum resident set size (KB) = 540672 Test 167 control_atmwav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/atmaero_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/atmaero_control_p8_intel Checking test 168 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5099,14 +5071,14 @@ Checking test 168 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 237.349565 -The maximum resident set size (KB) = 2814604 +The total amount of wall time = 240.493684 +The maximum resident set size (KB) = 2815572 Test 168 atmaero_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/atmaero_control_p8_rad_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/atmaero_control_p8_rad_intel Checking test 169 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5150,14 +5122,14 @@ Checking test 169 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 281.146549 -The maximum resident set size (KB) = 2878712 +The total amount of wall time = 280.208677 +The maximum resident set size (KB) = 2879996 Test 169 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/atmaero_control_p8_rad_micro_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/atmaero_control_p8_rad_micro_intel Checking test 170 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5201,14 +5173,14 @@ 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 = 285.391278 -The maximum resident set size (KB) = 2888876 +The total amount of wall time = 286.502373 +The maximum resident set size (KB) = 2886156 Test 170 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/regional_atmaq_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_atmaq_intel Checking test 171 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5224,14 +5196,14 @@ Checking test 171 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 709.336380 -The maximum resident set size (KB) = 1259820 +The total amount of wall time = 706.801801 +The maximum resident set size (KB) = 1258348 Test 171 regional_atmaq_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_246459/regional_atmaq_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_atmaq_debug_intel Checking test 172 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5245,12 +5217,259 @@ Checking test 172 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 = 1346.057283 -The maximum resident set size (KB) = 1291604 +The total amount of wall time = 1335.556435 +The maximum resident set size (KB) = 1298104 Test 172 regional_atmaq_debug_intel PASS +FAILED TESTS: +059 hrrr_control_intel failed in check_result +hrrr_control_intel 059 failed in run_test +060 hrrr_control_qr_intel failed in check_result +hrrr_control_qr_intel 060 failed in run_test +061 hrrr_control_decomp_intel failed in check_result +hrrr_control_decomp_intel 061 failed in run_test +062 hrrr_control_2threads_intel failed in check_result +hrrr_control_2threads_intel 062 failed in run_test + +REGRESSION TEST FAILED +Fri Jul 14 17:50:35 UTC 2023 +Elapsed time: 01h:37m:24s. Have a nice day! +Mon Jul 17 17:40:42 UTC 2023 +Start Regression test + +Testing UFSWM Hash: e5a830d61aa335fb2ea7a9791fb00aec1612d844 +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) + 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + 5840cd1931e2e32b9dfded0c19049d0f1ec3d04c ../CICE-interface/CICE (CICE6.0.0-440-g5840cd1) + 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2295-g9923d6d) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) + b6901a95012bfe2fb65fc2bd86a67749f7d80441 ../FV3 (remotes/origin/hr2_land1) + b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) + 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) + fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) + 8dbe01268bd76a0c1860200d2fc152aa600e149f ../NOAHMP-interface/noahmp (v3.7.1-302-g8dbe012) + c4b116886b5ef9af5fb4942d7161074df3402732 ../WW3 (6.07.1-325-gc4b11688) + 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) +Compile rrfs_intel elapsed time 487 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44610/hrrr_control_intel +Checking test 001 hrrr_control_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 390.816588 +The maximum resident set size (KB) = 890996 + +Test 001 hrrr_control_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44610/hrrr_control_qr_intel +Checking test 002 hrrr_control_qr_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK + +The total amount of wall time = 383.037596 +The maximum resident set size (KB) = 900792 + +Test 002 hrrr_control_qr_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44610/hrrr_control_decomp_intel +Checking test 003 hrrr_control_decomp_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 401.687633 +The maximum resident set size (KB) = 891612 + +Test 003 hrrr_control_decomp_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44610/hrrr_control_2threads_intel +Checking test 004 hrrr_control_2threads_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 348.464854 +The maximum resident set size (KB) = 965832 + +Test 004 hrrr_control_2threads_intel PASS + REGRESSION TEST WAS SUCCESSFUL -Mon Jul 10 17:37:13 UTC 2023 -Elapsed time: 01h:42m:34s. Have a nice day! +Mon Jul 17 17:58:25 UTC 2023 +Elapsed time: 00h:17m:44s. Have a nice day! diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index ab703d1c35..6c292a1584 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,57 +1,57 @@ -Sun 09 Jul 2023 07:48:55 AM EDT +Thu 13 Jul 2023 10:54:44 PM EDT Start Regression test -Testing UFSWM Hash: 424d39f47a40bab187a41fa2c54087106ee4e80f +Testing UFSWM Hash: 328cb7309d2abb5a35b24cd605c9c867a6c32152 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 5840cd1931e2e32b9dfded0c19049d0f1ec3d04c ../CICE-interface/CICE (CICE6.0.0-440-g5840cd1) 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2295-g9923d6d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - b8ee3bd92ea9e47707c428cc666b47456fd20813 ../FV3 (remotes/origin/rrfs-32bit-physics) + b6901a95012bfe2fb65fc2bd86a67749f7d80441 ../FV3 (remotes/origin/hr2_land1) b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) - e1260f1ee711f66a1141010d13511a69c0f8637b ../NOAHMP-interface/noahmp (v3.7.1-292-ge1260f1) + 8dbe01268bd76a0c1860200d2fc152aa600e149f ../NOAHMP-interface/noahmp (v3.7.1-302-g8dbe012) c4b116886b5ef9af5fb4942d7161074df3402732 ../WW3 (6.07.1-325-gc4b11688) 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atmaero_intel elapsed time 712 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 733 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 638 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 274 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 790 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 696 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 717 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 709 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 677 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 719 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 695 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 828 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 774 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 767 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 723 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile atmwm_intel elapsed time 691 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 704 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 159 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 260 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 246 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 106 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 731 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 260 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 799 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 727 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 220 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 860 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 646 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 203 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 659 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 759 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 807 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 811 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 878 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 337 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 937 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 885 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 314 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 wam_debug_intel elapsed time 206 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 622 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_mixedmode_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/cpld_control_p8_mixedmode_intel +Compile csawmg_intel elapsed time 707 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 157 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 248 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 249 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 92 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 748 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 243 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 817 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 777 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 212 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 862 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 693 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 209 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 668 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 722 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 801 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 767 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 879 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 319 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 926 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 882 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 279 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 841 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 212 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 646 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_mixedmode_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/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 = 314.343702 - 0: The maximum resident set size (KB) = 1532328 + 0: The total amount of wall time = 315.419661 + 0: The maximum resident set size (KB) = 1532372 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/cpld_control_gfsv17_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_gfsv17_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/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 = 228.858381 - 0: The maximum resident set size (KB) = 1448628 + 0: The total amount of wall time = 230.135199 + 0: The maximum resident set size (KB) = 1448632 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/cpld_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -259,14 +259,14 @@ Checking test 003 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 = 356.476451 - 0: The maximum resident set size (KB) = 1567448 + 0: The total amount of wall time = 358.068895 + 0: The maximum resident set size (KB) = 1567524 Test 003 cpld_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/cpld_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -319,14 +319,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 206.538592 - 0: The maximum resident set size (KB) = 1259424 + 0: The total amount of wall time = 205.047628 + 0: The maximum resident set size (KB) = 1282692 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/cpld_control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -391,14 +391,14 @@ Checking test 005 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 = 357.057165 - 0: The maximum resident set size (KB) = 1578084 + 0: The total amount of wall time = 360.596641 + 0: The maximum resident set size (KB) = 1578560 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/cpld_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -451,14 +451,14 @@ Checking test 006 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 = 204.188005 - 0: The maximum resident set size (KB) = 1274020 + 0: The total amount of wall time = 205.375941 + 0: The maximum resident set size (KB) = 1297588 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/cpld_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -511,14 +511,14 @@ Checking test 007 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 = 371.542599 - 0: The maximum resident set size (KB) = 1759464 + 0: The total amount of wall time = 373.277266 + 0: The maximum resident set size (KB) = 1760276 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/cpld_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -571,14 +571,14 @@ Checking test 008 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 = 358.512316 - 0: The maximum resident set size (KB) = 1559532 + 0: The total amount of wall time = 359.860249 + 0: The maximum resident set size (KB) = 1560024 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/cpld_mpi_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -631,14 +631,14 @@ Checking test 009 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 = 293.795101 - 0: The maximum resident set size (KB) = 1523952 + 0: The total amount of wall time = 296.196909 + 0: The maximum resident set size (KB) = 1524416 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/cpld_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_bmark_p8_intel Checking test 010 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -686,14 +686,14 @@ Checking test 010 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 = 719.147641 - 0: The maximum resident set size (KB) = 2497736 + 0: The total amount of wall time = 743.344408 + 0: The maximum resident set size (KB) = 2499596 Test 010 cpld_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/cpld_restart_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_restart_bmark_p8_intel Checking test 011 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -741,14 +741,14 @@ Checking test 011 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 = 430.057585 - 0: The maximum resident set size (KB) = 2328564 + 0: The total amount of wall time = 432.493770 + 0: The maximum resident set size (KB) = 2306056 Test 011 cpld_restart_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/cpld_control_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_control_noaero_p8_intel Checking test 012 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -812,14 +812,14 @@ Checking test 012 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 = 270.331887 - 0: The maximum resident set size (KB) = 1465008 + 0: The total amount of wall time = 270.433166 + 0: The maximum resident set size (KB) = 1465232 Test 012 cpld_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_c96_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/cpld_control_nowave_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c96_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_control_nowave_noaero_p8_intel Checking test 013 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -881,14 +881,14 @@ Checking test 013 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 = 279.738695 - 0: The maximum resident set size (KB) = 1500596 + 0: The total amount of wall time = 279.252723 + 0: The maximum resident set size (KB) = 1500700 Test 013 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_debug_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/cpld_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_debug_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_debug_p8_intel Checking test 014 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -941,14 +941,14 @@ Checking test 014 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 = 544.242410 - 0: The maximum resident set size (KB) = 1593912 + 0: The total amount of wall time = 541.950795 + 0: The maximum resident set size (KB) = 1593776 -Test 014 cpld_debug_p8_intel PASS +Test 014 cpld_debug_p8_intel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_debug_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/cpld_debug_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_debug_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_debug_noaero_p8_intel Checking test 015 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1000,14 +1000,14 @@ Checking test 015 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 = 377.960012 - 0: The maximum resident set size (KB) = 1483092 + 0: The total amount of wall time = 377.274294 + 0: The maximum resident set size (KB) = 1483564 Test 015 cpld_debug_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_noaero_p8_agrid_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/cpld_control_noaero_p8_agrid_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_agrid_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_control_noaero_p8_agrid_intel Checking test 016 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1069,14 +1069,14 @@ Checking test 016 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 = 287.967965 - 0: The maximum resident set size (KB) = 1502260 + 0: The total amount of wall time = 287.802235 + 0: The maximum resident set size (KB) = 1502540 Test 016 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_c48_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/cpld_control_c48_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c48_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_control_c48_intel Checking test 017 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1126,14 +1126,14 @@ Checking test 017 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 = 597.849273 - 0: The maximum resident set size (KB) = 2560468 + 0: The total amount of wall time = 598.827980 + 0: The maximum resident set size (KB) = 2560836 Test 017 cpld_control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/cpld_control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_control_p8_faster_intel Checking test 018 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1198,14 +1198,14 @@ Checking test 018 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 = 343.791642 - 0: The maximum resident set size (KB) = 1567460 + 0: The total amount of wall time = 345.410730 + 0: The maximum resident set size (KB) = 1567068 Test 018 cpld_control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_flake_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_flake_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_flake_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_flake_intel Checking test 019 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1216,14 +1216,14 @@ Checking test 019 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 204.656599 - 0: The maximum resident set size (KB) = 483412 + 0: The total amount of wall time = 205.700638 + 0: The maximum resident set size (KB) = 483684 Test 019 control_flake_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_CubedSphereGrid_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_CubedSphereGrid_intel Checking test 020 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1250,28 +1250,28 @@ Checking test 020 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 134.731646 - 0: The maximum resident set size (KB) = 435696 + 0: The total amount of wall time = 135.464581 + 0: The maximum resident set size (KB) = 435392 Test 020 control_CubedSphereGrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_parallel_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_CubedSphereGrid_parallel_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_CubedSphereGrid_parallel_intel Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 135.487443 - 0: The maximum resident set size (KB) = 435356 + 0: The total amount of wall time = 138.001630 + 0: The maximum resident set size (KB) = 435336 Test 021 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_latlon_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_latlon_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_latlon_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_latlon_intel Checking test 022 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1282,14 +1282,14 @@ Checking test 022 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.112492 - 0: The maximum resident set size (KB) = 435476 + 0: The total amount of wall time = 138.205792 + 0: The maximum resident set size (KB) = 435040 Test 022 control_latlon_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_wrtGauss_netcdf_parallel_intel Checking test 023 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1300,14 +1300,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 149.147144 - 0: The maximum resident set size (KB) = 435348 + 0: The total amount of wall time = 145.534103 + 0: The maximum resident set size (KB) = 435032 Test 023 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_c48_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_c48_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c48_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_c48_intel Checking test 024 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1346,14 +1346,14 @@ Checking test 024 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 = 417.988584 -0: The maximum resident set size (KB) = 634904 +0: The total amount of wall time = 417.866715 +0: The maximum resident set size (KB) = 632976 Test 024 control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_c192_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_c192_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c192_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_c192_intel Checking test 025 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1364,14 +1364,14 @@ Checking test 025 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 571.046973 - 0: The maximum resident set size (KB) = 542092 + 0: The total amount of wall time = 568.629935 + 0: The maximum resident set size (KB) = 541268 Test 025 control_c192_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_c384_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_c384_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c384_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_c384_intel Checking test 026 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1382,14 +1382,14 @@ Checking test 026 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1097.325092 - 0: The maximum resident set size (KB) = 821044 + 0: The total amount of wall time = 1088.012832 + 0: The maximum resident set size (KB) = 821480 Test 026 control_c384_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_c384gdas_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_c384gdas_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c384gdas_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_c384gdas_intel Checking test 027 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1432,14 +1432,14 @@ Checking test 027 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 = 899.461631 - 0: The maximum resident set size (KB) = 955024 + 0: The total amount of wall time = 896.448884 + 0: The maximum resident set size (KB) = 955392 Test 027 control_c384gdas_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_stochy_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_stochy_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_stochy_intel Checking test 028 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1450,28 +1450,28 @@ Checking test 028 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 91.420998 - 0: The maximum resident set size (KB) = 439884 + 0: The total amount of wall time = 91.320993 + 0: The maximum resident set size (KB) = 440160 Test 028 control_stochy_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_stochy_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_stochy_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_stochy_restart_intel Checking test 029 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.822869 - 0: The maximum resident set size (KB) = 193624 + 0: The total amount of wall time = 49.490790 + 0: The maximum resident set size (KB) = 193940 Test 029 control_stochy_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_lndp_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_lndp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_lndp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_lndp_intel Checking test 030 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1482,14 +1482,14 @@ Checking test 030 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.271068 - 0: The maximum resident set size (KB) = 439356 + 0: The total amount of wall time = 84.457451 + 0: The maximum resident set size (KB) = 443124 Test 030 control_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_iovr4_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_iovr4_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_iovr4_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_iovr4_intel Checking test 031 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1504,14 +1504,14 @@ Checking test 031 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.405276 - 0: The maximum resident set size (KB) = 435516 + 0: The total amount of wall time = 139.823090 + 0: The maximum resident set size (KB) = 435076 Test 031 control_iovr4_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_iovr5_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_iovr5_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_iovr5_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_iovr5_intel Checking test 032 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1526,14 +1526,14 @@ Checking test 032 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.910457 - 0: The maximum resident set size (KB) = 435580 + 0: The total amount of wall time = 139.954811 + 0: The maximum resident set size (KB) = 434968 Test 032 control_iovr5_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_p8_intel Checking test 033 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1580,14 +1580,14 @@ Checking test 033 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 = 170.215890 - 0: The maximum resident set size (KB) = 1405092 + 0: The total amount of wall time = 170.446565 + 0: The maximum resident set size (KB) = 1405108 Test 033 control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_restart_p8_intel Checking test 034 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1626,14 +1626,14 @@ Checking test 034 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 89.529957 - 0: The maximum resident set size (KB) = 565184 + 0: The total amount of wall time = 89.496313 + 0: The maximum resident set size (KB) = 564972 Test 034 control_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_qr_p8_intel Checking test 035 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1680,14 +1680,14 @@ Checking test 035 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 171.037002 - 0: The maximum resident set size (KB) = 1408696 + 0: The total amount of wall time = 169.998435 + 0: The maximum resident set size (KB) = 1409468 Test 035 control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_restart_qr_p8_intel Checking test 036 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1726,14 +1726,14 @@ Checking test 036 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 91.073802 - 0: The maximum resident set size (KB) = 580332 + 0: The total amount of wall time = 91.341529 + 0: The maximum resident set size (KB) = 580096 Test 036 control_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_decomp_p8_intel Checking test 037 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1776,14 +1776,14 @@ Checking test 037 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.596708 - 0: The maximum resident set size (KB) = 1399372 + 0: The total amount of wall time = 176.992673 + 0: The maximum resident set size (KB) = 1399416 Test 037 control_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_2threads_p8_intel Checking test 038 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1826,14 +1826,14 @@ Checking test 038 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 159.301581 - 0: The maximum resident set size (KB) = 1487000 + 0: The total amount of wall time = 158.951550 + 0: The maximum resident set size (KB) = 1486036 Test 038 control_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_lndp_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_p8_lndp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_lndp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_p8_lndp_intel Checking test 039 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1852,14 +1852,14 @@ Checking test 039 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 318.678886 - 0: The maximum resident set size (KB) = 1405704 + 0: The total amount of wall time = 318.046589 + 0: The maximum resident set size (KB) = 1405816 Test 039 control_p8_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_rrtmgp_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_p8_rrtmgp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_rrtmgp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_p8_rrtmgp_intel Checking test 040 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1906,14 +1906,14 @@ Checking test 040 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 = 232.776827 - 0: The maximum resident set size (KB) = 1458756 + 0: The total amount of wall time = 232.727341 + 0: The maximum resident set size (KB) = 1458836 Test 040 control_p8_rrtmgp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_mynn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_p8_mynn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_mynn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_p8_mynn_intel Checking test 041 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1960,14 +1960,14 @@ Checking test 041 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 = 174.007698 - 0: The maximum resident set size (KB) = 1409388 + 0: The total amount of wall time = 173.803078 + 0: The maximum resident set size (KB) = 1409536 Test 041 control_p8_mynn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/merra2_thompson_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/merra2_thompson_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/merra2_thompson_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/merra2_thompson_intel Checking test 042 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2014,14 +2014,14 @@ Checking test 042 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.685171 - 0: The maximum resident set size (KB) = 1408344 + 0: The total amount of wall time = 194.399241 + 0: The maximum resident set size (KB) = 1408644 Test 042 merra2_thompson_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/regional_control_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_control_intel Checking test 043 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2032,28 +2032,28 @@ Checking test 043 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.842118 - 0: The maximum resident set size (KB) = 575108 + 0: The total amount of wall time = 319.270093 + 0: The maximum resident set size (KB) = 575304 Test 043 regional_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/regional_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_restart_intel Checking test 044 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 = 161.711391 - 0: The maximum resident set size (KB) = 576568 + 0: The total amount of wall time = 162.407311 + 0: The maximum resident set size (KB) = 576676 Test 044 regional_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/regional_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_control_qr_intel Checking test 045 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2064,28 +2064,28 @@ Checking test 045 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 316.791201 - 0: The maximum resident set size (KB) = 575128 + 0: The total amount of wall time = 316.996210 + 0: The maximum resident set size (KB) = 575352 Test 045 regional_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/regional_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_restart_qr_intel Checking test 046 regional_restart_qr_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 = 162.521804 - 0: The maximum resident set size (KB) = 576552 + 0: The total amount of wall time = 162.029096 + 0: The maximum resident set size (KB) = 576688 Test 046 regional_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/regional_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_decomp_intel Checking test 047 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2096,14 +2096,14 @@ Checking test 047 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 333.456354 - 0: The maximum resident set size (KB) = 577316 + 0: The total amount of wall time = 336.582911 + 0: The maximum resident set size (KB) = 576416 Test 047 regional_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/regional_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_2threads_intel Checking test 048 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2114,14 +2114,14 @@ Checking test 048 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 181.395756 - 0: The maximum resident set size (KB) = 583552 + 0: The total amount of wall time = 185.931757 + 0: The maximum resident set size (KB) = 583740 Test 048 regional_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_noquilt_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/regional_noquilt_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_noquilt_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_noquilt_intel Checking test 049 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2129,28 +2129,28 @@ Checking test 049 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 = 317.703249 - 0: The maximum resident set size (KB) = 568752 + 0: The total amount of wall time = 316.291465 + 0: The maximum resident set size (KB) = 568868 Test 049 regional_noquilt_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/regional_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_netcdf_parallel_intel Checking test 050 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 = 314.247468 - 0: The maximum resident set size (KB) = 575008 + 0: The total amount of wall time = 319.256117 + 0: The maximum resident set size (KB) = 575352 Test 050 regional_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/regional_2dwrtdecomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_2dwrtdecomp_intel Checking test 051 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2161,14 +2161,14 @@ Checking test 051 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 320.023439 - 0: The maximum resident set size (KB) = 576708 + 0: The total amount of wall time = 325.390067 + 0: The maximum resident set size (KB) = 575796 Test 051 regional_2dwrtdecomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/fv3_regional_wofs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/regional_wofs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/fv3_regional_wofs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_wofs_intel Checking test 052 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2179,14 +2179,14 @@ Checking test 052 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 404.556854 - 0: The maximum resident set size (KB) = 259844 + 0: The total amount of wall time = 410.081708 + 0: The maximum resident set size (KB) = 260016 Test 052 regional_wofs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_control_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_control_intel Checking test 053 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2233,14 +2233,14 @@ Checking test 053 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.979178 - 0: The maximum resident set size (KB) = 805120 + 0: The total amount of wall time = 452.190492 + 0: The maximum resident set size (KB) = 805248 Test 053 rap_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_spp_sppt_shum_skeb_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/regional_spp_sppt_shum_skeb_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_spp_sppt_shum_skeb_intel Checking test 054 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2251,14 +2251,14 @@ Checking test 054 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 250.538609 - 0: The maximum resident set size (KB) = 891732 + 0: The total amount of wall time = 252.713630 + 0: The maximum resident set size (KB) = 891800 Test 054 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_decomp_intel Checking test 055 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2305,14 +2305,14 @@ Checking test 055 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 = 465.267012 - 0: The maximum resident set size (KB) = 805336 + 0: The total amount of wall time = 466.283246 + 0: The maximum resident set size (KB) = 805548 Test 055 rap_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_2threads_intel Checking test 056 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2359,14 +2359,14 @@ Checking test 056 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 = 426.211971 - 0: The maximum resident set size (KB) = 876288 + 0: The total amount of wall time = 427.201264 + 0: The maximum resident set size (KB) = 878664 Test 056 rap_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_restart_intel Checking test 057 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2405,14 +2405,14 @@ Checking test 057 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.595192 - 0: The maximum resident set size (KB) = 545636 + 0: The total amount of wall time = 228.530490 + 0: The maximum resident set size (KB) = 545544 Test 057 rap_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_sfcdiff_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_sfcdiff_intel Checking test 058 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2459,14 +2459,14 @@ Checking test 058 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 = 452.069330 - 0: The maximum resident set size (KB) = 805352 + 0: The total amount of wall time = 450.834630 + 0: The maximum resident set size (KB) = 805488 Test 058 rap_sfcdiff_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_sfcdiff_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_sfcdiff_decomp_intel Checking test 059 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2513,14 +2513,14 @@ Checking test 059 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 = 466.663021 - 0: The maximum resident set size (KB) = 804704 + 0: The total amount of wall time = 467.036459 + 0: The maximum resident set size (KB) = 804852 Test 059 rap_sfcdiff_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_sfcdiff_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_sfcdiff_restart_intel Checking test 060 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2559,14 +2559,14 @@ Checking test 060 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.108891 - 0: The maximum resident set size (KB) = 550292 + 0: The total amount of wall time = 335.447606 + 0: The maximum resident set size (KB) = 550332 Test 060 rap_sfcdiff_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hrrr_control_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_intel Checking test 061 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2613,14 +2613,14 @@ Checking test 061 hrrr_control_intel 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 = 431.550769 - 0: The maximum resident set size (KB) = 803360 + 0: The total amount of wall time = 433.249976 + 0: The maximum resident set size (KB) = 803252 Test 061 hrrr_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hrrr_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_qr_intel Checking test 062 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2667,14 +2667,14 @@ Checking test 062 hrrr_control_qr_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 = 430.526995 - 0: The maximum resident set size (KB) = 813676 + 0: The total amount of wall time = 432.461089 + 0: The maximum resident set size (KB) = 813780 Test 062 hrrr_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hrrr_control_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_decomp_intel Checking test 063 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2721,14 +2721,14 @@ Checking test 063 hrrr_control_decomp_intel 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 = 445.933446 - 0: The maximum resident set size (KB) = 802624 + 0: The total amount of wall time = 447.161018 + 0: The maximum resident set size (KB) = 802800 Test 063 hrrr_control_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hrrr_control_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_2threads_intel Checking test 064 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2775,42 +2775,42 @@ Checking test 064 hrrr_control_2threads_intel 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 = 397.411233 - 0: The maximum resident set size (KB) = 877792 + 0: The total amount of wall time = 400.027471 + 0: The maximum resident set size (KB) = 877860 Test 064 hrrr_control_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hrrr_control_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_restart_intel Checking test 065 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 = 322.748761 - 0: The maximum resident set size (KB) = 545152 + 0: The total amount of wall time = 321.956147 + 0: The maximum resident set size (KB) = 545132 Test 065 hrrr_control_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hrrr_control_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_restart_qr_intel Checking test 066 hrrr_control_restart_qr_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 = 324.054685 - 0: The maximum resident set size (KB) = 566072 + 0: The total amount of wall time = 324.374325 + 0: The maximum resident set size (KB) = 566288 Test 066 hrrr_control_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rrfs_v1beta_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_v1beta_intel Checking test 067 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2857,14 +2857,14 @@ Checking test 067 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.919961 - 0: The maximum resident set size (KB) = 802024 + 0: The total amount of wall time = 443.391177 + 0: The maximum resident set size (KB) = 802728 Test 067 rrfs_v1beta_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_v1nssl_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rrfs_v1nssl_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_v1nssl_intel Checking test 068 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2879,14 +2879,14 @@ Checking test 068 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 546.369229 - 0: The maximum resident set size (KB) = 491436 + 0: The total amount of wall time = 544.697393 + 0: The maximum resident set size (KB) = 492424 Test 068 rrfs_v1nssl_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_nohailnoccn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_v1nssl_nohailnoccn_intel Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2901,14 +2901,14 @@ Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 530.561600 - 0: The maximum resident set size (KB) = 485452 + 0: The total amount of wall time = 531.468234 + 0: The maximum resident set size (KB) = 485052 Test 069 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 070 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2924,14 +2924,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_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 = 149.835327 - 0: The maximum resident set size (KB) = 647932 + 0: The total amount of wall time = 150.314122 + 0: The maximum resident set size (KB) = 648144 Test 070 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 071 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2947,14 +2947,14 @@ Checking test 071 rrfs_smoke_conus13km_hrrr_warm_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 = 147.853046 - 0: The maximum resident set size (KB) = 648312 + 0: The total amount of wall time = 147.818287 + 0: The maximum resident set size (KB) = 648404 Test 071 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 072 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2963,14 +2963,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 92.517167 - 0: The maximum resident set size (KB) = 663372 + 0: The total amount of wall time = 93.792421 + 0: The maximum resident set size (KB) = 662776 Test 072 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rrfs_conus13km_hrrr_warm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_conus13km_hrrr_warm_intel Checking test 073 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2986,14 +2986,14 @@ Checking test 073 rrfs_conus13km_hrrr_warm_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 = 132.997605 - 0: The maximum resident set size (KB) = 633100 + 0: The total amount of wall time = 135.834372 + 0: The maximum resident set size (KB) = 633248 Test 073 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 074 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3002,38 +3002,38 @@ Checking test 074 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 150.069376 - 0: The maximum resident set size (KB) = 650500 + 0: The total amount of wall time = 153.225407 + 0: The maximum resident set size (KB) = 650672 Test 074 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 075 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 83.723178 - 0: The maximum resident set size (KB) = 641384 + 0: The total amount of wall time = 85.398790 + 0: The maximum resident set size (KB) = 640380 Test 075 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 076 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 157.571518 - 0: The maximum resident set size (KB) = 705812 + 0: The total amount of wall time = 123.393467 + 0: The maximum resident set size (KB) = 707348 Test 076 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_csawmgt_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_csawmgt_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_csawmgt_intel Checking test 077 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3044,14 +3044,14 @@ Checking test 077 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 358.357918 - 0: The maximum resident set size (KB) = 501464 + 0: The total amount of wall time = 358.920021 + 0: The maximum resident set size (KB) = 501540 Test 077 control_csawmgt_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_ras_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_ras_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_ras_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_ras_intel Checking test 078 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3062,26 +3062,26 @@ Checking test 078 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.069247 - 0: The maximum resident set size (KB) = 471348 + 0: The total amount of wall time = 192.902918 + 0: The maximum resident set size (KB) = 471548 Test 078 control_ras_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_wam_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_wam_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wam_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_wam_intel Checking test 079 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 120.708708 - 0: The maximum resident set size (KB) = 186928 + 0: The total amount of wall time = 120.911682 + 0: The maximum resident set size (KB) = 187048 Test 079 control_wam_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_p8_faster_intel Checking test 080 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3128,14 +3128,14 @@ Checking test 080 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 160.263815 - 0: The maximum resident set size (KB) = 1404916 + 0: The total amount of wall time = 161.090958 + 0: The maximum resident set size (KB) = 1404912 Test 080 control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/regional_control_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_control_faster_intel Checking test 081 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3146,56 +3146,56 @@ Checking test 081 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.465667 - 0: The maximum resident set size (KB) = 574808 + 0: The total amount of wall time = 299.035932 + 0: The maximum resident set size (KB) = 575052 Test 081 regional_control_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 875.040225 - 0: The maximum resident set size (KB) = 679664 + 0: The total amount of wall time = 874.903494 + 0: The maximum resident set size (KB) = 680092 Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 083 rrfs_smoke_conus13km_hrrr_warm_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 = 498.067081 - 0: The maximum resident set size (KB) = 695536 + 0: The total amount of wall time = 499.234684 + 0: The maximum resident set size (KB) = 695952 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_conus13km_hrrr_warm_debug_intel Checking test 084 rrfs_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 777.666946 - 0: The maximum resident set size (KB) = 664348 + 0: The total amount of wall time = 779.213732 + 0: The maximum resident set size (KB) = 664672 Test 084 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_CubedSphereGrid_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3222,348 +3222,348 @@ 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 = 150.687587 - 0: The maximum resident set size (KB) = 597780 + 0: The total amount of wall time = 150.682328 + 0: The maximum resident set size (KB) = 598324 Test 085 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/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 = 154.826461 - 0: The maximum resident set size (KB) = 597588 + 0: The total amount of wall time = 154.588885 + 0: The maximum resident set size (KB) = 598068 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_stochy_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_stochy_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/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 = 170.679684 - 0: The maximum resident set size (KB) = 603408 + 0: The total amount of wall time = 171.099711 + 0: The maximum resident set size (KB) = 603944 Test 087 control_stochy_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_lndp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_lndp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_lndp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/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 = 152.963101 - 0: The maximum resident set size (KB) = 601956 + 0: The total amount of wall time = 153.067486 + 0: The maximum resident set size (KB) = 602884 Test 088 control_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_csawmg_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_csawmg_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmg_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/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 = 243.844607 - 0: The maximum resident set size (KB) = 639492 + 0: The total amount of wall time = 243.618965 + 0: The maximum resident set size (KB) = 640120 Test 089 control_csawmg_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_csawmgt_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_csawmgt_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/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 = 240.078641 - 0: The maximum resident set size (KB) = 639576 + 0: The total amount of wall time = 239.193450 + 0: The maximum resident set size (KB) = 640048 Test 090 control_csawmgt_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_ras_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_ras_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_ras_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/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 = 154.735279 - 0: The maximum resident set size (KB) = 612528 + 0: The total amount of wall time = 154.807257 + 0: The maximum resident set size (KB) = 613304 Test 091 control_ras_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_diag_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_diag_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_diag_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/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 = 157.105086 - 0: The maximum resident set size (KB) = 654984 + 0: The total amount of wall time = 157.193883 + 0: The maximum resident set size (KB) = 655380 Test 092 control_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_debug_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_debug_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/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 = 178.669078 - 0: The maximum resident set size (KB) = 1422644 + 0: The total amount of wall time = 172.767794 + 0: The maximum resident set size (KB) = 1422948 Test 093 control_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/regional_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/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 = 1034.235617 - 0: The maximum resident set size (KB) = 602952 + 0: The total amount of wall time = 1034.267250 + 0: The maximum resident set size (KB) = 603364 Test 094 regional_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_control_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/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 = 281.513062 - 0: The maximum resident set size (KB) = 969772 + 0: The total amount of wall time = 282.020703 + 0: The maximum resident set size (KB) = 969908 Test 095 rap_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hrrr_control_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/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 = 274.908388 - 0: The maximum resident set size (KB) = 966524 + 0: The total amount of wall time = 275.594207 + 0: The maximum resident set size (KB) = 966916 Test 096 hrrr_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_unified_drag_suite_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_unified_drag_suite_debug_intel Checking test 097 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.655927 - 0: The maximum resident set size (KB) = 969520 + 0: The total amount of wall time = 282.200557 + 0: The maximum resident set size (KB) = 970256 Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_diag_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_diag_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_diag_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_diag_debug_intel Checking test 098 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 295.831261 - 0: The maximum resident set size (KB) = 1051924 + 0: The total amount of wall time = 295.836856 + 0: The maximum resident set size (KB) = 1052468 Test 098 rap_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_cires_ugwp_debug_intel Checking test 099 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.160591 - 0: The maximum resident set size (KB) = 969720 + 0: The total amount of wall time = 287.599654 + 0: The maximum resident set size (KB) = 969948 Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_unified_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_unified_ugwp_debug_intel Checking test 100 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.419207 - 0: The maximum resident set size (KB) = 969648 + 0: The total amount of wall time = 288.044572 + 0: The maximum resident set size (KB) = 970064 Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_lndp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_lndp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_lndp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_lndp_debug_intel Checking test 101 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.056405 - 0: The maximum resident set size (KB) = 970940 + 0: The total amount of wall time = 284.425170 + 0: The maximum resident set size (KB) = 971292 Test 101 rap_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_progcld_thompson_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_progcld_thompson_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_progcld_thompson_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_progcld_thompson_debug_intel Checking test 102 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.492459 - 0: The maximum resident set size (KB) = 969684 + 0: The total amount of wall time = 282.311979 + 0: The maximum resident set size (KB) = 969960 Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_noah_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_noah_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_noah_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_noah_debug_intel Checking test 103 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.849691 - 0: The maximum resident set size (KB) = 967752 + 0: The total amount of wall time = 276.183045 + 0: The maximum resident set size (KB) = 968392 Test 103 rap_noah_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_sfcdiff_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_sfcdiff_debug_intel Checking test 104 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.380059 - 0: The maximum resident set size (KB) = 968456 + 0: The total amount of wall time = 282.357234 + 0: The maximum resident set size (KB) = 968780 Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 469.211339 - 0: The maximum resident set size (KB) = 967584 + 0: The total amount of wall time = 467.443409 + 0: The maximum resident set size (KB) = 967960 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rrfs_v1beta_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_v1beta_debug_intel Checking test 106 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.721840 - 0: The maximum resident set size (KB) = 965692 + 0: The total amount of wall time = 277.196548 + 0: The maximum resident set size (KB) = 965988 Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_clm_lake_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_clm_lake_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_clm_lake_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_clm_lake_debug_intel Checking test 107 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 347.863357 - 0: The maximum resident set size (KB) = 971116 + 0: The total amount of wall time = 346.202388 + 0: The maximum resident set size (KB) = 971652 Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_flake_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_flake_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_flake_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_flake_debug_intel Checking test 108 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.645216 - 0: The maximum resident set size (KB) = 969880 + 0: The total amount of wall time = 281.939775 + 0: The maximum resident set size (KB) = 970468 Test 108 rap_flake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_wam_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_wam_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wam_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_wam_debug_intel Checking test 109 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 286.489915 - 0: The maximum resident set size (KB) = 216212 + 0: The total amount of wall time = 286.701836 + 0: The maximum resident set size (KB) = 216728 Test 109 control_wam_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3574,14 +3574,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 236.061220 - 0: The maximum resident set size (KB) = 803532 + 0: The total amount of wall time = 236.944410 + 0: The maximum resident set size (KB) = 806004 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_control_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3628,14 +3628,14 @@ Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 369.115472 - 0: The maximum resident set size (KB) = 689516 + 0: The total amount of wall time = 370.186227 + 0: The maximum resident set size (KB) = 689668 Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hrrr_control_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3682,14 +3682,14 @@ Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.830787 - 0: The maximum resident set size (KB) = 688732 + 0: The total amount of wall time = 190.506325 + 0: The maximum resident set size (KB) = 688956 Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_qr_dyn32_phy32_intel Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3736,14 +3736,14 @@ Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.252495 - 0: The maximum resident set size (KB) = 695320 + 0: The total amount of wall time = 191.992223 + 0: The maximum resident set size (KB) = 695504 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3790,14 +3790,14 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 348.858028 - 0: The maximum resident set size (KB) = 742368 + 0: The total amount of wall time = 349.903462 + 0: The maximum resident set size (KB) = 742664 -Test 114 rap_2threads_dyn32_phy32_intel PASS +Test 114 rap_2threads_dyn32_phy32_intel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3844,14 +3844,14 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.778053 - 0: The maximum resident set size (KB) = 738468 + 0: The total amount of wall time = 175.854635 + 0: The maximum resident set size (KB) = 738780 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3898,14 +3898,14 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 199.901635 - 0: The maximum resident set size (KB) = 687944 + 0: The total amount of wall time = 195.732354 + 0: The maximum resident set size (KB) = 688156 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3944,42 +3944,42 @@ Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 274.091395 - 0: The maximum resident set size (KB) = 520444 + 0: The total amount of wall time = 275.182596 + 0: The maximum resident set size (KB) = 520588 Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_restart_dyn32_phy32_intel Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 98.499837 - 0: The maximum resident set size (KB) = 514488 + 0: The total amount of wall time = 99.941278 + 0: The maximum resident set size (KB) = 514572 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 119 hrrr_control_restart_qr_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.966368 - 0: The maximum resident set size (KB) = 541324 + 0: The total amount of wall time = 102.383854 + 0: The maximum resident set size (KB) = 541412 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_fast_phy32_intel Checking test 120 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3995,14 +3995,14 @@ Checking test 120 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 120.538298 - 0: The maximum resident set size (KB) = 589172 + 0: The total amount of wall time = 120.711577 + 0: The maximum resident set size (KB) = 589332 Test 120 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4018,38 +4018,38 @@ Checking test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 118.555998 - 0: The maximum resident set size (KB) = 597036 + 0: The total amount of wall time = 120.743815 + 0: The maximum resident set size (KB) = 597392 Test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 122 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 68.982364 - 0: The maximum resident set size (KB) = 589108 + 0: The total amount of wall time = 69.490480 + 0: The maximum resident set size (KB) = 589296 Test 122 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 108.575015 - 0: The maximum resident set size (KB) = 615336 + 0: The total amount of wall time = 107.608429 + 0: The maximum resident set size (KB) = 615672 Test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_control_dyn64_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_control_dyn64_phy32_intel Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4096,81 +4096,81 @@ 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 = 248.984888 - 0: The maximum resident set size (KB) = 710888 + 0: The total amount of wall time = 249.126023 + 0: The maximum resident set size (KB) = 710724 Test 124 rap_control_dyn64_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/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 = 277.762092 - 0: The maximum resident set size (KB) = 852752 + 0: The total amount of wall time = 277.881742 + 0: The maximum resident set size (KB) = 853148 Test 125 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/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 = 271.140804 - 0: The maximum resident set size (KB) = 851688 + 0: The total amount of wall time = 271.651148 + 0: The maximum resident set size (KB) = 851940 Test 126 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/rap_control_dyn64_phy32_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_control_dyn64_phy32_debug_intel Checking test 127 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.272388 - 0: The maximum resident set size (KB) = 872852 + 0: The total amount of wall time = 282.618808 + 0: The maximum resident set size (KB) = 873280 Test 127 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_regional_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_atm_intel Checking test 128 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 239.334457 - 0: The maximum resident set size (KB) = 684756 + 0: The total amount of wall time = 239.158432 + 0: The maximum resident set size (KB) = 684016 Test 128 hafs_regional_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_atm_thompson_gfdlsf_intel Checking test 129 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 274.746937 - 0: The maximum resident set size (KB) = 1037188 + 0: The total amount of wall time = 275.069792 + 0: The maximum resident set size (KB) = 1037012 Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_ocn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_regional_atm_ocn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_atm_ocn_intel Checking test 130 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4179,14 +4179,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 - 0: The total amount of wall time = 421.177576 - 0: The maximum resident set size (KB) = 715220 + 0: The total amount of wall time = 419.099513 + 0: The maximum resident set size (KB) = 714912 Test 130 hafs_regional_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_wav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_regional_atm_wav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_atm_wav_intel Checking test 131 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4195,14 +4195,14 @@ Checking test 131 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 903.067836 - 0: The maximum resident set size (KB) = 746632 + 0: The total amount of wall time = 902.308707 + 0: The maximum resident set size (KB) = 747192 Test 131 hafs_regional_atm_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_regional_atm_ocn_wav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_atm_ocn_wav_intel Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4213,14 +4213,14 @@ Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1012.511457 - 0: The maximum resident set size (KB) = 765460 + 0: The total amount of wall time = 1015.095654 + 0: The maximum resident set size (KB) = 764612 Test 132 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_regional_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_1nest_atm_intel Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4242,14 +4242,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 - 0: The total amount of wall time = 338.776086 - 0: The maximum resident set size (KB) = 275952 + 0: The total amount of wall time = 336.804800 + 0: The maximum resident set size (KB) = 276024 Test 133 hafs_regional_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_regional_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_1nest_atm_qr_intel Checking test 134 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4271,14 +4271,14 @@ Checking test 134 hafs_regional_1nest_atm_qr_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 = 384.682216 - 0: The maximum resident set size (KB) = 272260 + 0: The total amount of wall time = 378.745095 + 0: The maximum resident set size (KB) = 274196 Test 134 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_telescopic_2nests_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_telescopic_2nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_telescopic_2nests_atm_intel Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4287,14 +4287,14 @@ Checking test 135 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 = 383.509932 - 0: The maximum resident set size (KB) = 284152 + 0: The total amount of wall time = 382.477708 + 0: The maximum resident set size (KB) = 285032 Test 135 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_global_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_global_1nest_atm_intel Checking test 136 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4341,14 +4341,14 @@ Checking test 136 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 = 152.619636 - 0: The maximum resident set size (KB) = 182288 + 0: The total amount of wall time = 152.210833 + 0: The maximum resident set size (KB) = 182068 Test 136 hafs_global_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_global_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_global_1nest_atm_qr_intel Checking test 137 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4395,14 +4395,14 @@ Checking test 137 hafs_global_1nest_atm_qr_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 = 215.107117 - 0: The maximum resident set size (KB) = 190224 + 0: The total amount of wall time = 215.152740 + 0: The maximum resident set size (KB) = 190740 Test 137 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_global_multiple_4nests_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_global_multiple_4nests_atm_intel Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4484,14 +4484,14 @@ Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 436.738928 - 0: The maximum resident set size (KB) = 213816 + 0: The total amount of wall time = 437.030569 + 0: The maximum resident set size (KB) = 231352 Test 138 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_global_multiple_4nests_atm_qr_intel Checking test 139 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4573,14 +4573,14 @@ Checking test 139 hafs_global_multiple_4nests_atm_qr_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 = 536.006015 - 0: The maximum resident set size (KB) = 244372 + 0: The total amount of wall time = 527.528227 + 0: The maximum resident set size (KB) = 253388 Test 139 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/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 @@ -4589,14 +4589,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 = 216.694691 - 0: The maximum resident set size (KB) = 293476 + 0: The total amount of wall time = 216.980960 + 0: The maximum resident set size (KB) = 296784 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/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 @@ -4618,14 +4618,14 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 199.726839 - 0: The maximum resident set size (KB) = 290896 + 0: The total amount of wall time = 201.832559 + 0: The maximum resident set size (KB) = 294524 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 142 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4647,14 +4647,14 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_qr_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 = 247.002015 - 0: The maximum resident set size (KB) = 300984 + 0: The total amount of wall time = 236.781391 + 0: The maximum resident set size (KB) = 300924 Test 142 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/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 @@ -4663,42 +4663,42 @@ 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 = 249.075263 - 0: The maximum resident set size (KB) = 319184 + 0: The total amount of wall time = 248.904890 + 0: The maximum resident set size (KB) = 319040 Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_global_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/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 = 59.683922 - 0: The maximum resident set size (KB) = 201736 + 0: The total amount of wall time = 59.666818 + 0: The maximum resident set size (KB) = 201728 Test 144 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/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 = 755.461675 - 0: The maximum resident set size (KB) = 345648 + 0: The total amount of wall time = 757.242174 + 0: The maximum resident set size (KB) = 346072 Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/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 @@ -4709,14 +4709,14 @@ 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 = 642.041912 - 0: The maximum resident set size (KB) = 368444 + 0: The total amount of wall time = 640.818044 + 0: The maximum resident set size (KB) = 369032 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_docn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_regional_docn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_docn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_docn_intel Checking test 147 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4724,14 +4724,14 @@ Checking test 147 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 361.689395 - 0: The maximum resident set size (KB) = 722984 + 0: The total amount of wall time = 356.963666 + 0: The maximum resident set size (KB) = 720956 Test 147 hafs_regional_docn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_docn_oisst_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_regional_docn_oisst_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_docn_oisst_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_docn_oisst_intel Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4739,131 +4739,131 @@ Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 358.228568 - 0: The maximum resident set size (KB) = 710516 + 0: The total amount of wall time = 359.662930 + 0: The maximum resident set size (KB) = 710960 Test 148 hafs_regional_docn_oisst_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_datm_cdeps_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/hafs_regional_datm_cdeps_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_datm_cdeps_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_datm_cdeps_intel Checking test 149 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 = 1185.197731 - 0: The maximum resident set size (KB) = 819932 + 0: The total amount of wall time = 1189.708059 + 0: The maximum resident set size (KB) = 819324 Test 149 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/datm_cdeps_control_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_control_cfsr_intel Checking test 150 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 = 162.872291 - 0: The maximum resident set size (KB) = 716228 + 0: The total amount of wall time = 163.940699 + 0: The maximum resident set size (KB) = 716176 Test 150 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/datm_cdeps_restart_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_restart_cfsr_intel Checking test 151 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 = 93.899850 - 0: The maximum resident set size (KB) = 711460 + 0: The total amount of wall time = 94.022274 + 0: The maximum resident set size (KB) = 711396 Test 151 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/datm_cdeps_control_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_control_gefs_intel Checking test 152 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 = 155.362180 - 0: The maximum resident set size (KB) = 600028 + 0: The total amount of wall time = 157.208487 + 0: The maximum resident set size (KB) = 599984 Test 152 datm_cdeps_control_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_iau_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/datm_cdeps_iau_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_iau_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_iau_gefs_intel Checking test 153 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 = 155.969656 - 0: The maximum resident set size (KB) = 595992 + 0: The total amount of wall time = 156.153520 + 0: The maximum resident set size (KB) = 599920 Test 153 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_stochy_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/datm_cdeps_stochy_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_stochy_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_stochy_gefs_intel Checking test 154 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 = 156.321508 - 0: The maximum resident set size (KB) = 597912 + 0: The total amount of wall time = 156.826577 + 0: The maximum resident set size (KB) = 596040 Test 154 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_ciceC_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/datm_cdeps_ciceC_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_ciceC_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_ciceC_cfsr_intel Checking test 155 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 = 160.384457 - 0: The maximum resident set size (KB) = 716212 + 0: The total amount of wall time = 160.648370 + 0: The maximum resident set size (KB) = 716316 Test 155 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_bulk_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/datm_cdeps_bulk_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_bulk_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_bulk_cfsr_intel Checking test 156 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 = 160.456918 - 0: The maximum resident set size (KB) = 716204 + 0: The total amount of wall time = 160.278889 + 0: The maximum resident set size (KB) = 716212 Test 156 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_bulk_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/datm_cdeps_bulk_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_bulk_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_bulk_gefs_intel Checking test 157 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 = 153.649412 - 0: The maximum resident set size (KB) = 596760 + 0: The total amount of wall time = 153.765222 + 0: The maximum resident set size (KB) = 596008 Test 157 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_mx025_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/datm_cdeps_mx025_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_mx025_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_mx025_cfsr_intel Checking test 158 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4872,14 +4872,14 @@ 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 = 390.547455 - 0: The maximum resident set size (KB) = 492628 + 0: The total amount of wall time = 387.215535 + 0: The maximum resident set size (KB) = 492708 Test 158 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_mx025_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/datm_cdeps_mx025_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_mx025_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_mx025_gefs_intel Checking test 159 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4888,77 +4888,77 @@ 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 = 386.822862 - 0: The maximum resident set size (KB) = 473556 + 0: The total amount of wall time = 388.133616 + 0: The maximum resident set size (KB) = 473480 Test 159 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_multiple_files_cfsr_intel Checking test 160 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 = 161.717522 - 0: The maximum resident set size (KB) = 716052 + 0: The total amount of wall time = 161.554202 + 0: The maximum resident set size (KB) = 704744 Test 160 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_3072x1536_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_3072x1536_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_3072x1536_cfsr_intel Checking test 161 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 = 249.218717 - 0: The maximum resident set size (KB) = 1940896 + 0: The total amount of wall time = 247.723302 + 0: The maximum resident set size (KB) = 1940216 Test 161 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_gfs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/datm_cdeps_gfs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_gfs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_gfs_intel Checking test 162 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 = 245.219472 - 0: The maximum resident set size (KB) = 1944588 + 0: The total amount of wall time = 246.243134 + 0: The maximum resident set size (KB) = 1940312 Test 162 datm_cdeps_gfs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_debug_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/datm_cdeps_debug_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_debug_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_debug_cfsr_intel Checking test 163 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 = 367.926329 - 0: The maximum resident set size (KB) = 707172 + 0: The total amount of wall time = 367.317787 + 0: The maximum resident set size (KB) = 707352 Test 163 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/datm_cdeps_control_cfsr_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_control_cfsr_faster_intel Checking test 164 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 159.495296 - 0: The maximum resident set size (KB) = 716268 + 0: The total amount of wall time = 159.978603 + 0: The maximum resident set size (KB) = 704720 Test 164 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/datm_cdeps_lnd_gswp3_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_lnd_gswp3_intel Checking test 165 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4967,14 +4967,14 @@ Checking test 165 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 7.610493 - 0: The maximum resident set size (KB) = 153148 + 0: The total amount of wall time = 7.629362 + 0: The maximum resident set size (KB) = 153380 Test 165 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_lnd_gswp3_rst_intel Checking test 166 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4983,14 +4983,14 @@ Checking test 166 datm_cdeps_lnd_gswp3_rst_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 = 13.504732 - 0: The maximum resident set size (KB) = 152148 + 0: The total amount of wall time = 13.989513 + 0: The maximum resident set size (KB) = 152352 Test 166 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_atmlnd_sbs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_p8_atmlnd_sbs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_atmlnd_sbs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_p8_atmlnd_sbs_intel Checking test 167 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5075,14 +5075,14 @@ Checking test 167 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 = 215.008368 - 0: The maximum resident set size (KB) = 1436636 + 0: The total amount of wall time = 215.865450 + 0: The maximum resident set size (KB) = 1436696 Test 167 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/atmwav_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/atmwav_control_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmwav_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/atmwav_control_noaero_p8_intel Checking test 168 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5125,14 +5125,14 @@ Checking test 168 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 92.253512 - 0: The maximum resident set size (KB) = 1421460 + 0: The total amount of wall time = 93.058570 + 0: The maximum resident set size (KB) = 1421668 Test 168 atmwav_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_atmwav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/control_atmwav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_atmwav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_atmwav_intel Checking test 169 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5176,14 +5176,14 @@ Checking test 169 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.916436 - 0: The maximum resident set size (KB) = 452876 + 0: The total amount of wall time = 89.781453 + 0: The maximum resident set size (KB) = 453052 Test 169 control_atmwav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/atmaero_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/atmaero_control_p8_intel Checking test 170 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5227,14 +5227,14 @@ Checking test 170 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 237.650047 - 0: The maximum resident set size (KB) = 1447104 + 0: The total amount of wall time = 235.008578 + 0: The maximum resident set size (KB) = 1446380 Test 170 atmaero_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_rad_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/atmaero_control_p8_rad_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/atmaero_control_p8_rad_intel Checking test 171 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5278,14 +5278,14 @@ Checking test 171 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 292.058232 - 0: The maximum resident set size (KB) = 1497720 + 0: The total amount of wall time = 288.141279 + 0: The maximum resident set size (KB) = 1498260 Test 171 atmaero_control_p8_rad_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_rad_micro_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/atmaero_control_p8_rad_micro_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_micro_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/atmaero_control_p8_rad_micro_intel Checking test 172 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5329,14 +5329,14 @@ Checking test 172 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 291.508128 - 0: The maximum resident set size (KB) = 1502828 + 0: The total amount of wall time = 297.015994 + 0: The maximum resident set size (KB) = 1503016 Test 172 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_atmaq_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/regional_atmaq_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_atmaq_intel Checking test 173 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5352,14 +5352,14 @@ Checking test 173 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 632.424180 - 0: The maximum resident set size (KB) = 966156 + 0: The total amount of wall time = 631.784396 + 0: The maximum resident set size (KB) = 968604 Test 173 regional_atmaq_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_atmaq_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_32082/regional_atmaq_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_atmaq_faster_intel Checking test 174 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5375,12 +5375,12 @@ Checking test 174 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 577.783019 - 0: The maximum resident set size (KB) = 969308 + 0: The total amount of wall time = 578.723774 + 0: The maximum resident set size (KB) = 967080 Test 174 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Sun 09 Jul 2023 09:01:19 AM EDT -Elapsed time: 01h:12m:31s. Have a nice day! +Fri 14 Jul 2023 12:16:29 AM EDT +Elapsed time: 01h:21m:53s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 4ba65b99dd..8ac7e7b70e 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,74 +1,74 @@ -Sun Jul 9 22:53:56 UTC 2023 +Fri Jul 14 21:40:36 UTC 2023 Start Regression test -Testing UFSWM Hash: 5ebc77415306874437f65b2b4a7d885cc1aef7ba +Testing UFSWM Hash: a740e476759d2565d73ebf9de41455f2125f9434 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 5840cd1931e2e32b9dfded0c19049d0f1ec3d04c ../CICE-interface/CICE (CICE6.0.0-440-g5840cd1) 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1402-g9923d6d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - b8ee3bd92ea9e47707c428cc666b47456fd20813 ../FV3 (remotes/origin/rrfs-32bit-physics) + b6901a95012bfe2fb65fc2bd86a67749f7d80441 ../FV3 (remotes/origin/hr2_land1) b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) - e1260f1ee711f66a1141010d13511a69c0f8637b ../NOAHMP-interface/noahmp (v3.7.1-292-ge1260f1) + 8dbe01268bd76a0c1860200d2fc152aa600e149f ../NOAHMP-interface/noahmp (v3.7.1-302-g8dbe012) c4b116886b5ef9af5fb4942d7161074df3402732 ../WW3 (6.07.1-325-gc4b11688) 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atmaero_intel elapsed time 524 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 178 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 581 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 515 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 232 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 177 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 573 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 168 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 183 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 284 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 538 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 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 531 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 546 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 590 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 514 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 113 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 184 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 118 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 181 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 58 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 581 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 201 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 594 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 586 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 633 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=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 511 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 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_debug_dyn32_intel elapsed time 228 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 175 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 591 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 182 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 175 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 273 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 536 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 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 541 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 189 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 556 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 517 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 534 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 561 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 609 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 518 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 105 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 179 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 113 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 175 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 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 192 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 589 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 580 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 651 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 197 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 509 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 169 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 519 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 206 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 536 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 579 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 228 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 577 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile rrfs_gnu elapsed time 203 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 538 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 581 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 235 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 591 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 212 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 622 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 128 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 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_gnu elapsed time 248 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 888 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 641 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 147 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 228 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 145 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 700 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 268 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 653 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 212 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 608 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 135 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 214 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 246 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 896 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 108 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 171 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 498 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_control_p8_mixedmode_intel +Compile s2swa_gnu elapsed time 270 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 659 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 100 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -133,14 +133,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 = 313.530388 - 0: The maximum resident set size (KB) = 3137084 + 0: The total amount of wall time = 307.740199 + 0: The maximum resident set size (KB) = 3119876 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_control_gfsv17_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -204,14 +204,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 = 220.023597 - 0: The maximum resident set size (KB) = 1679504 + 0: The total amount of wall time = 218.020230 + 0: The maximum resident set size (KB) = 1677340 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_control_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -276,14 +276,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.801407 - 0: The maximum resident set size (KB) = 3166016 + 0: The total amount of wall time = 340.755904 + 0: The maximum resident set size (KB) = 3164204 Test 003 cpld_control_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_restart_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -336,14 +336,14 @@ Checking test 004 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 = 199.616557 - 0: The maximum resident set size (KB) = 3037568 + 0: The total amount of wall time = 195.076903 + 0: The maximum resident set size (KB) = 3050228 Test 004 cpld_restart_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_control_qr_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -408,14 +408,14 @@ Checking test 005 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 = 342.662504 - 0: The maximum resident set size (KB) = 3171000 + 0: The total amount of wall time = 341.648133 + 0: The maximum resident set size (KB) = 3175336 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_restart_qr_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -468,14 +468,14 @@ Checking test 006 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 = 207.084728 - 0: The maximum resident set size (KB) = 3059684 + 0: The total amount of wall time = 199.140974 + 0: The maximum resident set size (KB) = 3053904 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_2threads_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -528,14 +528,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 353.478077 - 0: The maximum resident set size (KB) = 3512344 + 0: The total amount of wall time = 345.160621 + 0: The maximum resident set size (KB) = 3517832 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_decomp_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -588,14 +588,14 @@ Checking test 008 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 = 343.444289 - 0: The maximum resident set size (KB) = 3158232 + 0: The total amount of wall time = 341.272061 + 0: The maximum resident set size (KB) = 3160960 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_mpi_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -648,14 +648,14 @@ Checking test 009 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 = 278.700602 - 0: The maximum resident set size (KB) = 3021764 + 0: The total amount of wall time = 278.599966 + 0: The maximum resident set size (KB) = 3018432 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_control_ciceC_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -720,14 +720,14 @@ Checking test 010 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 = 343.874415 - 0: The maximum resident set size (KB) = 3163380 + 0: The total amount of wall time = 338.191124 + 0: The maximum resident set size (KB) = 3154368 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_control_c192_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -780,14 +780,14 @@ Checking test 011 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 = 596.173696 - 0: The maximum resident set size (KB) = 3258776 + 0: The total amount of wall time = 594.054465 + 0: The maximum resident set size (KB) = 3250888 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_restart_c192_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -840,14 +840,14 @@ Checking test 012 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 = 396.305109 - 0: The maximum resident set size (KB) = 3151220 + 0: The total amount of wall time = 382.446155 + 0: The maximum resident set size (KB) = 3156328 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_bmark_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -895,14 +895,14 @@ Checking test 013 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 = 711.368572 - 0: The maximum resident set size (KB) = 4019008 + 0: The total amount of wall time = 711.639148 + 0: The maximum resident set size (KB) = 4034812 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_restart_bmark_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -950,14 +950,14 @@ Checking test 014 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 = 437.964362 - 0: The maximum resident set size (KB) = 3966580 + 0: The total amount of wall time = 433.950137 + 0: The maximum resident set size (KB) = 3999276 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_control_noaero_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1021,14 +1021,14 @@ Checking test 015 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 = 264.898768 - 0: The maximum resident set size (KB) = 1720036 + 0: The total amount of wall time = 265.038494 + 0: The maximum resident set size (KB) = 1720896 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_control_nowave_noaero_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c96_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1090,14 +1090,14 @@ Checking test 016 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 = 260.245837 - 0: The maximum resident set size (KB) = 1762020 + 0: The total amount of wall time = 258.574496 + 0: The maximum resident set size (KB) = 1760412 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_debug_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1150,14 +1150,14 @@ Checking test 017 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 = 524.903951 - 0: The maximum resident set size (KB) = 3237368 + 0: The total amount of wall time = 523.503824 + 0: The maximum resident set size (KB) = 3231572 Test 017 cpld_debug_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_debug_noaero_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1209,14 +1209,14 @@ Checking test 018 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 = 365.908494 - 0: The maximum resident set size (KB) = 1698080 + 0: The total amount of wall time = 367.387613 + 0: The maximum resident set size (KB) = 1720092 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_control_noaero_p8_agrid_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1278,14 +1278,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 272.173493 - 0: The maximum resident set size (KB) = 1739708 + 0: The total amount of wall time = 266.399933 + 0: The maximum resident set size (KB) = 1758116 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_control_c48_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1335,14 +1335,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 577.889840 - 0: The maximum resident set size (KB) = 2809628 + 0: The total amount of wall time = 573.431043 + 0: The maximum resident set size (KB) = 2809004 Test 020 cpld_control_c48_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_control_p8_faster_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1407,14 +1407,14 @@ Checking test 021 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 = 321.282533 - 0: The maximum resident set size (KB) = 3179668 + 0: The total amount of wall time = 314.209212 + 0: The maximum resident set size (KB) = 3177028 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_control_pdlib_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1478,14 +1478,14 @@ Checking test 022 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 = 1186.826865 - 0: The maximum resident set size (KB) = 1760628 + 0: The total amount of wall time = 1184.563003 + 0: The maximum resident set size (KB) = 1752524 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_restart_pdlib_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1537,14 +1537,14 @@ Checking test 023 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 = 563.428697 - 0: The maximum resident set size (KB) = 1024464 + 0: The total amount of wall time = 561.029119 + 0: The maximum resident set size (KB) = 1031052 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_mpi_pdlib_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1608,14 +1608,14 @@ Checking test 024 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 = 1078.164625 - 0: The maximum resident set size (KB) = 1631028 + 0: The total amount of wall time = 1073.656877 + 0: The maximum resident set size (KB) = 1645992 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_debug_pdlib_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 025 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 = 1384.333901 - 0: The maximum resident set size (KB) = 1674868 + 0: The total amount of wall time = 1413.098721 + 0: The maximum resident set size (KB) = 1690976 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_flake_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 187.159639 - 0: The maximum resident set size (KB) = 683792 + 0: The total amount of wall time = 185.930742 + 0: The maximum resident set size (KB) = 679936 Test 026 control_flake_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_CubedSphereGrid_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1719,28 +1719,28 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 128.863436 - 0: The maximum resident set size (KB) = 626324 + 0: The total amount of wall time = 128.969598 + 0: The maximum resident set size (KB) = 629672 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_CubedSphereGrid_parallel_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 129.700566 - 0: The maximum resident set size (KB) = 628832 + 0: The total amount of wall time = 127.028495 + 0: The maximum resident set size (KB) = 623036 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_latlon_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1751,14 +1751,14 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.054442 - 0: The maximum resident set size (KB) = 626776 + 0: The total amount of wall time = 134.461420 + 0: The maximum resident set size (KB) = 620856 Test 029 control_latlon_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_wrtGauss_netcdf_parallel_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1769,14 +1769,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.392045 - 0: The maximum resident set size (KB) = 627388 + 0: The total amount of wall time = 136.268043 + 0: The maximum resident set size (KB) = 625760 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_c48_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1815,14 +1815,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 371.745618 -0: The maximum resident set size (KB) = 821012 +0: The total amount of wall time = 364.980203 +0: The maximum resident set size (KB) = 822328 Test 031 control_c48_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_c192_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1833,14 +1833,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 523.044741 - 0: The maximum resident set size (KB) = 776016 + 0: The total amount of wall time = 520.378739 + 0: The maximum resident set size (KB) = 766696 Test 032 control_c192_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_c384_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1851,14 +1851,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 523.648909 - 0: The maximum resident set size (KB) = 1265216 + 0: The total amount of wall time = 523.328490 + 0: The maximum resident set size (KB) = 1268368 Test 033 control_c384_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_c384gdas_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1901,14 +1901,14 @@ Checking test 034 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 = 457.739009 - 0: The maximum resident set size (KB) = 1379836 + 0: The total amount of wall time = 450.213930 + 0: The maximum resident set size (KB) = 1376188 Test 034 control_c384gdas_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_stochy_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1919,28 +1919,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 89.101479 - 0: The maximum resident set size (KB) = 628884 + 0: The total amount of wall time = 86.741952 + 0: The maximum resident set size (KB) = 632512 Test 035 control_stochy_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_stochy_restart_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.923033 - 0: The maximum resident set size (KB) = 481212 + 0: The total amount of wall time = 47.397559 + 0: The maximum resident set size (KB) = 479284 Test 036 control_stochy_restart_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_lndp_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1951,14 +1951,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 80.890865 - 0: The maximum resident set size (KB) = 632900 + 0: The total amount of wall time = 81.451320 + 0: The maximum resident set size (KB) = 629080 Test 037 control_lndp_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_iovr4_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1973,14 +1973,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.106661 - 0: The maximum resident set size (KB) = 623236 + 0: The total amount of wall time = 135.960907 + 0: The maximum resident set size (KB) = 624680 Test 038 control_iovr4_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_iovr5_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1995,14 +1995,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.162294 - 0: The maximum resident set size (KB) = 624776 + 0: The total amount of wall time = 135.128764 + 0: The maximum resident set size (KB) = 626096 Test 039 control_iovr5_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2049,14 +2049,14 @@ Checking test 040 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.646720 - 0: The maximum resident set size (KB) = 1607624 + 0: The total amount of wall time = 165.615388 + 0: The maximum resident set size (KB) = 1603288 Test 040 control_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_restart_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2095,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 - 0: The total amount of wall time = 89.036444 - 0: The maximum resident set size (KB) = 869580 + 0: The total amount of wall time = 86.535592 + 0: The maximum resident set size (KB) = 880620 Test 041 control_restart_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_qr_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2149,14 +2149,14 @@ Checking test 042 control_qr_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.104902 - 0: The maximum resident set size (KB) = 1607676 + 0: The total amount of wall time = 165.737467 + 0: The maximum resident set size (KB) = 1606160 Test 042 control_qr_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_restart_qr_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2195,14 +2195,14 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 90.265049 - 0: The maximum resident set size (KB) = 866412 + 0: The total amount of wall time = 88.159522 + 0: The maximum resident set size (KB) = 864316 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_decomp_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2245,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 - 0: The total amount of wall time = 172.357798 - 0: The maximum resident set size (KB) = 1591432 + 0: The total amount of wall time = 171.953827 + 0: The maximum resident set size (KB) = 1586740 Test 044 control_decomp_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_2threads_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2295,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 - 0: The total amount of wall time = 157.413810 - 0: The maximum resident set size (KB) = 1681972 + 0: The total amount of wall time = 155.672201 + 0: The maximum resident set size (KB) = 1681420 Test 045 control_2threads_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_p8_lndp_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2321,14 +2321,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 313.744501 - 0: The maximum resident set size (KB) = 1596140 + 0: The total amount of wall time = 311.180517 + 0: The maximum resident set size (KB) = 1601124 Test 046 control_p8_lndp_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_p8_rrtmgp_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2375,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 - 0: The total amount of wall time = 223.736868 - 0: The maximum resident set size (KB) = 1664668 + 0: The total amount of wall time = 221.788095 + 0: The maximum resident set size (KB) = 1672348 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_p8_mynn_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2429,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 - 0: The total amount of wall time = 170.646594 - 0: The maximum resident set size (KB) = 1609788 + 0: The total amount of wall time = 169.457000 + 0: The maximum resident set size (KB) = 1603032 Test 048 control_p8_mynn_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/merra2_thompson_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2483,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 - 0: The total amount of wall time = 190.301667 - 0: The maximum resident set size (KB) = 1606308 + 0: The total amount of wall time = 189.595510 + 0: The maximum resident set size (KB) = 1598240 Test 049 merra2_thompson_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/regional_control_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2501,28 +2501,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 291.982535 - 0: The maximum resident set size (KB) = 872528 + 0: The total amount of wall time = 290.057079 + 0: The maximum resident set size (KB) = 870216 Test 050 regional_control_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/regional_restart_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/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 - 0: The total amount of wall time = 149.410091 - 0: The maximum resident set size (KB) = 865360 + 0: The total amount of wall time = 145.906577 + 0: The maximum resident set size (KB) = 865412 Test 051 regional_restart_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/regional_control_qr_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2533,28 +2533,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 292.922067 - 0: The maximum resident set size (KB) = 868268 + 0: The total amount of wall time = 289.363606 + 0: The maximum resident set size (KB) = 870112 Test 052 regional_control_qr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/regional_restart_qr_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_restart_qr_intel Checking test 053 regional_restart_qr_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 = 150.860799 - 0: The maximum resident set size (KB) = 860336 + 0: The total amount of wall time = 146.588677 + 0: The maximum resident set size (KB) = 863268 Test 053 regional_restart_qr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/regional_decomp_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2565,14 +2565,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 308.240794 - 0: The maximum resident set size (KB) = 858788 + 0: The total amount of wall time = 306.143029 + 0: The maximum resident set size (KB) = 862644 Test 054 regional_decomp_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/regional_2threads_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2583,14 +2583,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 177.881968 - 0: The maximum resident set size (KB) = 848256 + 0: The total amount of wall time = 185.249079 + 0: The maximum resident set size (KB) = 851684 Test 055 regional_2threads_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/regional_noquilt_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2598,28 +2598,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 - 0: The total amount of wall time = 293.117930 - 0: The maximum resident set size (KB) = 856752 + 0: The total amount of wall time = 289.879122 + 0: The maximum resident set size (KB) = 856928 Test 056 regional_noquilt_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/regional_netcdf_parallel_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/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 - 0: The total amount of wall time = 289.239966 - 0: The maximum resident set size (KB) = 861576 + 0: The total amount of wall time = 287.159620 + 0: The maximum resident set size (KB) = 864956 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/regional_2dwrtdecomp_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2630,14 +2630,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.502514 - 0: The maximum resident set size (KB) = 868952 + 0: The total amount of wall time = 290.714162 + 0: The maximum resident set size (KB) = 862404 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/regional_wofs_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/fv3_regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2648,14 +2648,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 371.396736 - 0: The maximum resident set size (KB) = 623048 + 0: The total amount of wall time = 371.693490 + 0: The maximum resident set size (KB) = 625380 Test 059 regional_wofs_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_control_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2702,14 +2702,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 447.945588 - 0: The maximum resident set size (KB) = 1056620 + 0: The total amount of wall time = 442.333419 + 0: The maximum resident set size (KB) = 1058684 Test 060 rap_control_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/regional_spp_sppt_shum_skeb_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2720,14 +2720,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 227.202420 - 0: The maximum resident set size (KB) = 1180224 + 0: The total amount of wall time = 225.258615 + 0: The maximum resident set size (KB) = 1185396 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_decomp_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2774,14 +2774,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 466.599921 - 0: The maximum resident set size (KB) = 993252 + 0: The total amount of wall time = 462.867724 + 0: The maximum resident set size (KB) = 999396 Test 062 rap_decomp_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_2threads_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2828,14 +2828,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 416.272164 - 0: The maximum resident set size (KB) = 1137500 + 0: The total amount of wall time = 413.545117 + 0: The maximum resident set size (KB) = 1133880 Test 063 rap_2threads_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_restart_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2874,14 +2874,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.717579 - 0: The maximum resident set size (KB) = 962700 + 0: The total amount of wall time = 225.710581 + 0: The maximum resident set size (KB) = 956852 Test 064 rap_restart_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_sfcdiff_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2928,14 +2928,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 447.176686 - 0: The maximum resident set size (KB) = 1058412 + 0: The total amount of wall time = 442.060804 + 0: The maximum resident set size (KB) = 1052048 Test 065 rap_sfcdiff_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_sfcdiff_decomp_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2982,14 +2982,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 469.426088 - 0: The maximum resident set size (KB) = 990968 + 0: The total amount of wall time = 467.661339 + 0: The maximum resident set size (KB) = 1002460 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_sfcdiff_restart_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3028,69 +3028,15 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 332.735359 - 0: The maximum resident set size (KB) = 983212 + 0: The total amount of wall time = 330.558634 + 0: The maximum resident set size (KB) = 986660 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_intel Checking test 068 hrrr_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 429.345706 - 0: The maximum resident set size (KB) = 1058972 - -Test 068 hrrr_control_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_qr_intel -Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3136,15 +3082,15 @@ Checking test 069 hrrr_control_qr_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 = 428.016205 - 0: The maximum resident set size (KB) = 1055020 + 0: The total amount of wall time = 427.772434 + 0: The maximum resident set size (KB) = 1057040 -Test 069 hrrr_control_qr_intel PASS +Test 068 hrrr_control_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_decomp_intel -Checking test 070 hrrr_control_decomp_intel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_qr_intel +Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3190,14 +3136,68 @@ Checking test 070 hrrr_control_decomp_intel 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 = 448.195306 - 0: The maximum resident set size (KB) = 1002380 + 0: The total amount of wall time = 425.492844 + 0: The maximum resident set size (KB) = 1060464 + +Test 069 hrrr_control_qr_intel PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_decomp_intel +Checking test 070 hrrr_control_decomp_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 445.971344 + 0: The maximum resident set size (KB) = 995104 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_2threads_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3213,73 +3213,73 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 395.190978 - 0: The maximum resident set size (KB) = 1074816 + 0: The total amount of wall time = 393.675483 + 0: The maximum resident set size (KB) = 1076368 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_restart_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 320.960725 - 0: The maximum resident set size (KB) = 983588 + 0: The total amount of wall time = 317.453676 + 0: The maximum resident set size (KB) = 985988 Test 072 hrrr_control_restart_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_restart_qr_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_restart_qr_intel Checking test 073 hrrr_control_restart_qr_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 = 320.914554 - 0: The maximum resident set size (KB) = 987492 + 0: The total amount of wall time = 318.744711 + 0: The maximum resident set size (KB) = 994312 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_v1beta_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3326,14 +3326,14 @@ Checking test 074 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.054128 - 0: The maximum resident set size (KB) = 1054860 + 0: The total amount of wall time = 438.005843 + 0: The maximum resident set size (KB) = 1054228 Test 074 rrfs_v1beta_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_v1nssl_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3348,14 +3348,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 521.541911 - 0: The maximum resident set size (KB) = 690096 + 0: The total amount of wall time = 520.204406 + 0: The maximum resident set size (KB) = 694928 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3370,14 +3370,14 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 510.907729 - 0: The maximum resident set size (KB) = 763304 + 0: The total amount of wall time = 508.537952 + 0: The maximum resident set size (KB) = 751512 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 077 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3393,14 +3393,14 @@ Checking test 077 rrfs_smoke_conus13km_hrrr_warm_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 = 147.797256 - 0: The maximum resident set size (KB) = 1035548 + 0: The total amount of wall time = 146.654398 + 0: The maximum resident set size (KB) = 1028504 Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3416,14 +3416,14 @@ Checking test 078 rrfs_smoke_conus13km_hrrr_warm_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 = 144.064300 - 0: The maximum resident set size (KB) = 979956 + 0: The total amount of wall time = 142.077282 + 0: The maximum resident set size (KB) = 976584 Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3432,14 +3432,14 @@ Checking test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 91.754540 - 0: The maximum resident set size (KB) = 946204 + 0: The total amount of wall time = 89.034586 + 0: The maximum resident set size (KB) = 938304 Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_conus13km_hrrr_warm_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_conus13km_hrrr_warm_intel Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3455,14 +3455,14 @@ Checking test 080 rrfs_conus13km_hrrr_warm_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 = 131.727975 - 0: The maximum resident set size (KB) = 993900 + 0: The total amount of wall time = 129.781229 + 0: The maximum resident set size (KB) = 987916 Test 080 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3471,38 +3471,38 @@ Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 150.522835 - 0: The maximum resident set size (KB) = 1033444 + 0: The total amount of wall time = 147.868457 + 0: The maximum resident set size (KB) = 1034964 Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 84.431382 - 0: The maximum resident set size (KB) = 1026864 + 0: The total amount of wall time = 81.787659 + 0: The maximum resident set size (KB) = 1028392 Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 90.840182 - 0: The maximum resident set size (KB) = 1001692 + 0: The total amount of wall time = 86.924574 + 0: The maximum resident set size (KB) = 1013728 Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_csawmg_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_csawmg_intel Checking test 084 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3513,14 +3513,14 @@ Checking test 084 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 335.565928 - 0: The maximum resident set size (KB) = 725636 + 0: The total amount of wall time = 334.682367 + 0: The maximum resident set size (KB) = 726244 Test 084 control_csawmg_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_csawmgt_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_csawmgt_intel Checking test 085 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3531,14 +3531,14 @@ Checking test 085 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 334.757359 - 0: The maximum resident set size (KB) = 723328 + 0: The total amount of wall time = 328.832583 + 0: The maximum resident set size (KB) = 727188 Test 085 control_csawmgt_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_ras_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_ras_intel Checking test 086 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3549,26 +3549,26 @@ Checking test 086 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 183.148325 - 0: The maximum resident set size (KB) = 717260 + 0: The total amount of wall time = 181.241489 + 0: The maximum resident set size (KB) = 716632 Test 086 control_ras_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_wam_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_wam_intel Checking test 087 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.266731 - 0: The maximum resident set size (KB) = 635104 + 0: The total amount of wall time = 110.812571 + 0: The maximum resident set size (KB) = 635020 Test 087 control_wam_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_p8_faster_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_p8_faster_intel Checking test 088 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3615,14 +3615,14 @@ Checking test 088 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 = 157.016520 - 0: The maximum resident set size (KB) = 1604196 + 0: The total amount of wall time = 150.589569 + 0: The maximum resident set size (KB) = 1594952 Test 088 control_p8_faster_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/regional_control_faster_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_control_faster_intel Checking test 089 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3633,56 +3633,56 @@ Checking test 089 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 266.842017 - 0: The maximum resident set size (KB) = 862260 + 0: The total amount of wall time = 266.263929 + 0: The maximum resident set size (KB) = 869076 Test 089 regional_control_faster_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 810.493906 - 0: The maximum resident set size (KB) = 1059624 + 0: The total amount of wall time = 835.045797 + 0: The maximum resident set size (KB) = 1063020 Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 091 rrfs_smoke_conus13km_hrrr_warm_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 = 464.917798 - 0: The maximum resident set size (KB) = 967956 + 0: The total amount of wall time = 461.463366 + 0: The maximum resident set size (KB) = 971292 Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_conus13km_hrrr_warm_debug_intel Checking test 092 rrfs_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 750.846059 - 0: The maximum resident set size (KB) = 1039912 + 0: The total amount of wall time = 735.745599 + 0: The maximum resident set size (KB) = 1014904 Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_CubedSphereGrid_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_CubedSphereGrid_debug_intel Checking test 093 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3709,348 +3709,348 @@ Checking test 093 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 147.860356 - 0: The maximum resident set size (KB) = 796756 + 0: The total amount of wall time = 144.268384 + 0: The maximum resident set size (KB) = 795968 Test 093 control_CubedSphereGrid_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_wrtGauss_netcdf_parallel_debug_intel Checking test 094 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 144.292035 - 0: The maximum resident set size (KB) = 794036 + 0: The total amount of wall time = 142.588208 + 0: The maximum resident set size (KB) = 791492 Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_stochy_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_stochy_debug_intel Checking test 095 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.524373 - 0: The maximum resident set size (KB) = 801796 + 0: The total amount of wall time = 164.733934 + 0: The maximum resident set size (KB) = 800204 Test 095 control_stochy_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_lndp_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_lndp_debug_intel Checking test 096 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.293100 - 0: The maximum resident set size (KB) = 800756 + 0: The total amount of wall time = 147.372679 + 0: The maximum resident set size (KB) = 796800 Test 096 control_lndp_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_csawmg_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_csawmg_debug_intel Checking test 097 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 = 222.214455 - 0: The maximum resident set size (KB) = 837540 + 0: The total amount of wall time = 229.744743 + 0: The maximum resident set size (KB) = 841436 Test 097 control_csawmg_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_csawmgt_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_csawmgt_debug_intel Checking test 098 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.561544 - 0: The maximum resident set size (KB) = 842508 + 0: The total amount of wall time = 220.002087 + 0: The maximum resident set size (KB) = 840844 Test 098 control_csawmgt_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_ras_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_ras_debug_intel Checking test 099 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.862966 - 0: The maximum resident set size (KB) = 802872 + 0: The total amount of wall time = 147.133556 + 0: The maximum resident set size (KB) = 810392 Test 099 control_ras_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_diag_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_diag_debug_intel Checking test 100 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.659610 - 0: The maximum resident set size (KB) = 851292 + 0: The total amount of wall time = 149.755168 + 0: The maximum resident set size (KB) = 851772 Test 100 control_diag_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_debug_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_debug_p8_intel Checking test 101 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.486489 - 0: The maximum resident set size (KB) = 1622488 + 0: The total amount of wall time = 165.340387 + 0: The maximum resident set size (KB) = 1620888 Test 101 control_debug_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/regional_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_debug_intel Checking test 102 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 985.521668 - 0: The maximum resident set size (KB) = 884468 + 0: The total amount of wall time = 982.874550 + 0: The maximum resident set size (KB) = 887904 Test 102 regional_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_control_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_debug_intel Checking test 103 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.781170 - 0: The maximum resident set size (KB) = 1171664 + 0: The total amount of wall time = 268.702666 + 0: The maximum resident set size (KB) = 1173812 Test 103 rap_control_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_debug_intel Checking test 104 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.590459 - 0: The maximum resident set size (KB) = 1167640 + 0: The total amount of wall time = 259.650546 + 0: The maximum resident set size (KB) = 1167576 Test 104 hrrr_control_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_unified_drag_suite_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_unified_drag_suite_debug_intel Checking test 105 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 = 269.768605 - 0: The maximum resident set size (KB) = 1171860 + 0: The total amount of wall time = 268.004838 + 0: The maximum resident set size (KB) = 1170084 Test 105 rap_unified_drag_suite_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_diag_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_diag_debug_intel Checking test 106 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.702004 - 0: The maximum resident set size (KB) = 1254064 + 0: The total amount of wall time = 278.832137 + 0: The maximum resident set size (KB) = 1253916 Test 106 rap_diag_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_cires_ugwp_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_cires_ugwp_debug_intel Checking test 107 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 = 283.639223 - 0: The maximum resident set size (KB) = 1166996 + 0: The total amount of wall time = 271.292882 + 0: The maximum resident set size (KB) = 1176080 Test 107 rap_cires_ugwp_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_unified_ugwp_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_unified_ugwp_debug_intel Checking test 108 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.174804 - 0: The maximum resident set size (KB) = 1171340 + 0: The total amount of wall time = 270.619520 + 0: The maximum resident set size (KB) = 1173244 Test 108 rap_unified_ugwp_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_lndp_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_lndp_debug_intel Checking test 109 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.184319 - 0: The maximum resident set size (KB) = 1175672 + 0: The total amount of wall time = 271.413531 + 0: The maximum resident set size (KB) = 1168056 Test 109 rap_lndp_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_progcld_thompson_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_progcld_thompson_debug_intel Checking test 110 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 = 269.664391 - 0: The maximum resident set size (KB) = 1177520 + 0: The total amount of wall time = 271.167552 + 0: The maximum resident set size (KB) = 1174212 Test 110 rap_progcld_thompson_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_noah_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_noah_debug_intel Checking test 111 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.388663 - 0: The maximum resident set size (KB) = 1167840 + 0: The total amount of wall time = 265.673057 + 0: The maximum resident set size (KB) = 1171788 Test 111 rap_noah_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_sfcdiff_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_sfcdiff_debug_intel Checking test 112 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 = 267.717586 - 0: The maximum resident set size (KB) = 1170528 + 0: The total amount of wall time = 268.996881 + 0: The maximum resident set size (KB) = 1163916 Test 112 rap_sfcdiff_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 451.227274 - 0: The maximum resident set size (KB) = 1167740 + 0: The total amount of wall time = 441.394741 + 0: The maximum resident set size (KB) = 1171108 Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_v1beta_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_v1beta_debug_intel Checking test 114 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 = 262.452259 - 0: The maximum resident set size (KB) = 1173428 + 0: The total amount of wall time = 265.263807 + 0: The maximum resident set size (KB) = 1162968 Test 114 rrfs_v1beta_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_clm_lake_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_clm_lake_debug_intel Checking test 115 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 = 348.631420 - 0: The maximum resident set size (KB) = 1173132 + 0: The total amount of wall time = 348.803805 + 0: The maximum resident set size (KB) = 1171392 Test 115 rap_clm_lake_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_flake_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_flake_debug_intel Checking test 116 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.372991 - 0: The maximum resident set size (KB) = 1172244 + 0: The total amount of wall time = 267.007090 + 0: The maximum resident set size (KB) = 1169012 Test 116 rap_flake_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_wam_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_wam_debug_intel Checking test 117 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 274.315913 - 0: The maximum resident set size (KB) = 523332 + 0: The total amount of wall time = 273.839772 + 0: The maximum resident set size (KB) = 520008 Test 117 control_wam_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4061,14 +4061,14 @@ Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 212.702496 - 0: The maximum resident set size (KB) = 1075056 + 0: The total amount of wall time = 212.505246 + 0: The maximum resident set size (KB) = 1085676 Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_control_dyn32_phy32_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_dyn32_phy32_intel Checking test 119 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4115,14 +4115,14 @@ Checking test 119 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 370.636021 - 0: The maximum resident set size (KB) = 998960 + 0: The total amount of wall time = 368.602448 + 0: The maximum resident set size (KB) = 1005764 Test 119 rap_control_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_dyn32_phy32_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_dyn32_phy32_intel Checking test 120 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4169,14 +4169,14 @@ Checking test 120 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.863387 - 0: The maximum resident set size (KB) = 958444 + 0: The total amount of wall time = 189.525130 + 0: The maximum resident set size (KB) = 958508 Test 120 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_qr_dyn32_phy32_intel Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4223,14 +4223,14 @@ Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.789716 - 0: The maximum resident set size (KB) = 968256 + 0: The total amount of wall time = 189.381403 + 0: The maximum resident set size (KB) = 961760 Test 121 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_2threads_dyn32_phy32_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_2threads_dyn32_phy32_intel Checking test 122 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4277,14 +4277,14 @@ Checking test 122 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.188857 - 0: The maximum resident set size (KB) = 1016600 + 0: The total amount of wall time = 345.737575 + 0: The maximum resident set size (KB) = 1020448 Test 122 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_2threads_dyn32_phy32_intel Checking test 123 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4331,14 +4331,14 @@ Checking test 123 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 = 175.715680 - 0: The maximum resident set size (KB) = 930132 + 0: The total amount of wall time = 175.072815 + 0: The maximum resident set size (KB) = 940020 Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_decomp_dyn32_phy32_intel Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4385,14 +4385,14 @@ Checking test 124 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.233819 - 0: The maximum resident set size (KB) = 895420 + 0: The total amount of wall time = 200.717655 + 0: The maximum resident set size (KB) = 893948 Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_restart_dyn32_phy32_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_restart_dyn32_phy32_intel Checking test 125 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4431,42 +4431,42 @@ Checking test 125 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 = 272.457292 - 0: The maximum resident set size (KB) = 943436 + 0: The total amount of wall time = 271.616982 + 0: The maximum resident set size (KB) = 946856 Test 125 rap_restart_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_restart_dyn32_phy32_intel Checking test 126 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.387123 - 0: The maximum resident set size (KB) = 860816 + 0: The total amount of wall time = 97.868070 + 0: The maximum resident set size (KB) = 861496 Test 126 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 127 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 102.674554 - 0: The maximum resident set size (KB) = 873536 + 0: The total amount of wall time = 100.219761 + 0: The maximum resident set size (KB) = 884296 Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_fast_phy32_intel Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4482,14 +4482,14 @@ Checking test 128 rrfs_smoke_conus13km_fast_phy32_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 = 113.673512 - 0: The maximum resident set size (KB) = 906288 + 0: The total amount of wall time = 116.001846 + 0: The maximum resident set size (KB) = 905528 Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4505,38 +4505,38 @@ Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_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 = 113.265845 - 0: The maximum resident set size (KB) = 930388 + 0: The total amount of wall time = 111.550234 + 0: The maximum resident set size (KB) = 937436 Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 68.182268 - 0: The maximum resident set size (KB) = 894924 + 0: The total amount of wall time = 63.837519 + 0: The maximum resident set size (KB) = 899976 Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 72.961908 - 0: The maximum resident set size (KB) = 914476 + 0: The total amount of wall time = 69.224223 + 0: The maximum resident set size (KB) = 912252 Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_control_dyn64_phy32_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_dyn64_phy32_intel Checking test 132 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4583,81 +4583,81 @@ Checking test 132 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 = 239.259317 - 0: The maximum resident set size (KB) = 962432 + 0: The total amount of wall time = 240.910394 + 0: The maximum resident set size (KB) = 960416 Test 132 rap_control_dyn64_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_control_debug_dyn32_phy32_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_debug_dyn32_phy32_intel Checking test 133 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 = 267.640089 - 0: The maximum resident set size (KB) = 1053540 + 0: The total amount of wall time = 265.326277 + 0: The maximum resident set size (KB) = 1057032 Test 133 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_debug_dyn32_phy32_intel Checking test 134 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.240820 - 0: The maximum resident set size (KB) = 1052576 + 0: The total amount of wall time = 266.196927 + 0: The maximum resident set size (KB) = 1052320 Test 134 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_control_dyn64_phy32_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_dyn64_phy32_debug_intel Checking test 135 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.196694 - 0: The maximum resident set size (KB) = 1094668 + 0: The total amount of wall time = 270.401674 + 0: The maximum resident set size (KB) = 1094796 Test 135 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_regional_atm_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_atm_intel Checking test 136 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 223.527960 - 0: The maximum resident set size (KB) = 1046980 + 0: The total amount of wall time = 221.160292 + 0: The maximum resident set size (KB) = 1045040 Test 136 hafs_regional_atm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_atm_thompson_gfdlsf_intel Checking test 137 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 329.507545 - 0: The maximum resident set size (KB) = 1414752 + 0: The total amount of wall time = 314.418488 + 0: The maximum resident set size (KB) = 1414764 Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_regional_atm_ocn_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_atm_ocn_intel Checking test 138 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4666,14 +4666,14 @@ Checking test 138 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 372.244201 - 0: The maximum resident set size (KB) = 1218828 + 0: The total amount of wall time = 376.783978 + 0: The maximum resident set size (KB) = 1213704 Test 138 hafs_regional_atm_ocn_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_regional_atm_wav_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_atm_wav_intel Checking test 139 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4682,14 +4682,14 @@ Checking test 139 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 = 735.649365 - 0: The maximum resident set size (KB) = 1244956 + 0: The total amount of wall time = 734.318169 + 0: The maximum resident set size (KB) = 1245972 Test 139 hafs_regional_atm_wav_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_regional_atm_ocn_wav_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_atm_ocn_wav_intel Checking test 140 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4700,14 +4700,14 @@ Checking test 140 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 = 846.027812 - 0: The maximum resident set size (KB) = 1267864 + 0: The total amount of wall time = 839.464811 + 0: The maximum resident set size (KB) = 1268784 Test 140 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_regional_1nest_atm_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_1nest_atm_intel Checking test 141 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4729,14 +4729,14 @@ Checking test 141 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 = 296.721114 - 0: The maximum resident set size (KB) = 502088 + 0: The total amount of wall time = 295.777330 + 0: The maximum resident set size (KB) = 507192 Test 141 hafs_regional_1nest_atm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_regional_1nest_atm_qr_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_1nest_atm_qr_intel Checking test 142 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4758,14 +4758,14 @@ Checking test 142 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 316.013112 - 0: The maximum resident set size (KB) = 468876 + 0: The total amount of wall time = 302.373949 + 0: The maximum resident set size (KB) = 473468 Test 142 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_telescopic_2nests_atm_intel Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4774,14 +4774,14 @@ Checking test 143 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 = 339.790679 - 0: The maximum resident set size (KB) = 507928 + 0: The total amount of wall time = 337.492783 + 0: The maximum resident set size (KB) = 506828 Test 143 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_global_1nest_atm_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_global_1nest_atm_intel Checking test 144 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4828,14 +4828,14 @@ Checking test 144 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 = 136.744771 - 0: The maximum resident set size (KB) = 352092 + 0: The total amount of wall time = 136.228705 + 0: The maximum resident set size (KB) = 345332 Test 144 hafs_global_1nest_atm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_global_1nest_atm_qr_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_global_1nest_atm_qr_intel Checking test 145 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4882,14 +4882,14 @@ Checking test 145 hafs_global_1nest_atm_qr_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 = 147.232783 - 0: The maximum resident set size (KB) = 347640 + 0: The total amount of wall time = 141.456156 + 0: The maximum resident set size (KB) = 349024 Test 145 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_global_multiple_4nests_atm_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_global_multiple_4nests_atm_intel Checking test 146 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4971,14 +4971,14 @@ Checking test 146 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 = 388.124041 - 0: The maximum resident set size (KB) = 450316 + 0: The total amount of wall time = 383.515156 + 0: The maximum resident set size (KB) = 419796 Test 146 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_global_multiple_4nests_atm_qr_intel Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5060,14 +5060,14 @@ Checking test 147 hafs_global_multiple_4nests_atm_qr_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 = 420.851046 - 0: The maximum resident set size (KB) = 463932 + 0: The total amount of wall time = 404.310860 + 0: The maximum resident set size (KB) = 461460 Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_specified_moving_1nest_atm_intel Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5076,14 +5076,14 @@ Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 189.562299 - 0: The maximum resident set size (KB) = 517912 + 0: The total amount of wall time = 189.125873 + 0: The maximum resident set size (KB) = 518192 Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_storm_following_1nest_atm_intel Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5105,14 +5105,14 @@ Checking test 149 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 = 183.044031 - 0: The maximum resident set size (KB) = 517932 + 0: The total amount of wall time = 178.570178 + 0: The maximum resident set size (KB) = 520544 Test 149 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5134,14 +5134,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_qr_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 = 200.124146 - 0: The maximum resident set size (KB) = 500976 + 0: The total amount of wall time = 191.119752 + 0: The maximum resident set size (KB) = 494864 Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5150,42 +5150,42 @@ Checking test 151 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 = 221.952863 - 0: The maximum resident set size (KB) = 566040 + 0: The total amount of wall time = 218.769031 + 0: The maximum resident set size (KB) = 564520 Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_global_storm_following_1nest_atm_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_global_storm_following_1nest_atm_intel Checking test 152 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 = 55.135187 - 0: The maximum resident set size (KB) = 366564 + 0: The total amount of wall time = 55.591733 + 0: The maximum resident set size (KB) = 363704 Test 152 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 712.434449 - 0: The maximum resident set size (KB) = 585984 + 0: The total amount of wall time = 715.791783 + 0: The maximum resident set size (KB) = 579456 Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5196,14 +5196,14 @@ Checking test 154 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 = 484.425955 - 0: The maximum resident set size (KB) = 614404 + 0: The total amount of wall time = 491.978006 + 0: The maximum resident set size (KB) = 615232 Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_regional_docn_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_docn_intel Checking test 155 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5211,14 +5211,14 @@ Checking test 155 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 = 342.683540 - 0: The maximum resident set size (KB) = 1236892 + 0: The total amount of wall time = 336.070224 + 0: The maximum resident set size (KB) = 1234216 Test 155 hafs_regional_docn_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_regional_docn_oisst_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_docn_oisst_intel Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5226,131 +5226,131 @@ Checking test 156 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 = 345.662712 - 0: The maximum resident set size (KB) = 1216692 + 0: The total amount of wall time = 342.568917 + 0: The maximum resident set size (KB) = 1221456 Test 156 hafs_regional_docn_oisst_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hafs_regional_datm_cdeps_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_datm_cdeps_intel Checking test 157 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.873670 - 0: The maximum resident set size (KB) = 1036688 + 0: The total amount of wall time = 948.662847 + 0: The maximum resident set size (KB) = 1038340 Test 157 hafs_regional_datm_cdeps_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/datm_cdeps_control_cfsr_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_control_cfsr_intel Checking test 158 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.816245 - 0: The maximum resident set size (KB) = 1054472 + 0: The total amount of wall time = 156.204370 + 0: The maximum resident set size (KB) = 1051092 Test 158 datm_cdeps_control_cfsr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/datm_cdeps_restart_cfsr_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_restart_cfsr_intel Checking test 159 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.452368 - 0: The maximum resident set size (KB) = 1005896 + 0: The total amount of wall time = 89.036246 + 0: The maximum resident set size (KB) = 1023912 Test 159 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/datm_cdeps_control_gefs_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_control_gefs_intel Checking test 160 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.491072 - 0: The maximum resident set size (KB) = 942472 + 0: The total amount of wall time = 145.986607 + 0: The maximum resident set size (KB) = 967232 Test 160 datm_cdeps_control_gefs_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/datm_cdeps_iau_gefs_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_iau_gefs_intel Checking test 161 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.197525 - 0: The maximum resident set size (KB) = 954856 + 0: The total amount of wall time = 144.884466 + 0: The maximum resident set size (KB) = 958896 Test 161 datm_cdeps_iau_gefs_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/datm_cdeps_stochy_gefs_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_stochy_gefs_intel Checking test 162 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.862663 - 0: The maximum resident set size (KB) = 965232 + 0: The total amount of wall time = 145.076696 + 0: The maximum resident set size (KB) = 965952 Test 162 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/datm_cdeps_ciceC_cfsr_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_ciceC_cfsr_intel Checking test 163 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.806997 - 0: The maximum resident set size (KB) = 1051896 + 0: The total amount of wall time = 149.637203 + 0: The maximum resident set size (KB) = 1064084 Test 163 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/datm_cdeps_bulk_cfsr_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_bulk_cfsr_intel Checking test 164 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.018199 - 0: The maximum resident set size (KB) = 1054028 + 0: The total amount of wall time = 149.737014 + 0: The maximum resident set size (KB) = 1056932 Test 164 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/datm_cdeps_bulk_gefs_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_bulk_gefs_intel Checking test 165 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.279395 - 0: The maximum resident set size (KB) = 955612 + 0: The total amount of wall time = 145.776313 + 0: The maximum resident set size (KB) = 973060 Test 165 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/datm_cdeps_mx025_cfsr_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_mx025_cfsr_intel Checking test 166 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5359,14 +5359,14 @@ Checking test 166 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 = 448.195401 - 0: The maximum resident set size (KB) = 871656 + 0: The total amount of wall time = 433.584524 + 0: The maximum resident set size (KB) = 875408 Test 166 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/datm_cdeps_mx025_gefs_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_mx025_gefs_intel Checking test 167 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5375,77 +5375,77 @@ Checking test 167 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 = 437.652494 - 0: The maximum resident set size (KB) = 931728 + 0: The total amount of wall time = 436.824107 + 0: The maximum resident set size (KB) = 936348 Test 167 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_multiple_files_cfsr_intel Checking test 168 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 = 159.412271 - 0: The maximum resident set size (KB) = 1050084 + 0: The total amount of wall time = 151.801220 + 0: The maximum resident set size (KB) = 1053360 Test 168 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_3072x1536_cfsr_intel Checking test 169 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 = 218.447079 - 0: The maximum resident set size (KB) = 2361376 + 0: The total amount of wall time = 212.005506 + 0: The maximum resident set size (KB) = 2364112 Test 169 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/datm_cdeps_gfs_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_gfs_intel Checking test 170 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 226.192761 - 0: The maximum resident set size (KB) = 2346924 + 0: The total amount of wall time = 214.048091 + 0: The maximum resident set size (KB) = 2356840 Test 170 datm_cdeps_gfs_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/datm_cdeps_debug_cfsr_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_debug_cfsr_intel Checking test 171 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 366.161553 - 0: The maximum resident set size (KB) = 991248 + 0: The total amount of wall time = 353.217818 + 0: The maximum resident set size (KB) = 1006428 Test 171 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/datm_cdeps_control_cfsr_faster_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_control_cfsr_faster_intel Checking test 172 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.299273 - 0: The maximum resident set size (KB) = 1049328 + 0: The total amount of wall time = 147.552889 + 0: The maximum resident set size (KB) = 1049556 Test 172 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/datm_cdeps_lnd_gswp3_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_lnd_gswp3_intel Checking test 173 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 @@ -5454,14 +5454,14 @@ Checking test 173 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 = 7.125788 - 0: The maximum resident set size (KB) = 265484 + 0: The total amount of wall time = 6.927811 + 0: The maximum resident set size (KB) = 265800 Test 173 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_lnd_gswp3_rst_intel Checking test 174 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5470,14 +5470,14 @@ Checking test 174 datm_cdeps_lnd_gswp3_rst_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 = 12.638846 - 0: The maximum resident set size (KB) = 257124 + 0: The total amount of wall time = 12.055097 + 0: The maximum resident set size (KB) = 258716 Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_p8_atmlnd_sbs_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_p8_atmlnd_sbs_intel Checking test 175 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5562,14 +5562,14 @@ Checking test 175 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 = 203.855304 - 0: The maximum resident set size (KB) = 1615124 + 0: The total amount of wall time = 200.514727 + 0: The maximum resident set size (KB) = 1609972 Test 175 control_p8_atmlnd_sbs_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/atmwav_control_noaero_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/atmwav_control_noaero_p8_intel Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5612,14 +5612,14 @@ Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 93.911008 - 0: The maximum resident set size (KB) = 1638908 + 0: The total amount of wall time = 91.594053 + 0: The maximum resident set size (KB) = 1640312 Test 176 atmwav_control_noaero_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_atmwav_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_atmwav_intel Checking test 177 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5663,14 +5663,14 @@ Checking test 177 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 89.596510 - 0: The maximum resident set size (KB) = 659332 + 0: The total amount of wall time = 87.217083 + 0: The maximum resident set size (KB) = 660900 Test 177 control_atmwav_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/atmaero_control_p8_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/atmaero_control_p8_intel Checking test 178 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5714,14 +5714,14 @@ Checking test 178 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.296307 - 0: The maximum resident set size (KB) = 2973628 + 0: The total amount of wall time = 226.389339 + 0: The maximum resident set size (KB) = 2970192 Test 178 atmaero_control_p8_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/atmaero_control_p8_rad_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/atmaero_control_p8_rad_intel Checking test 179 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5765,14 +5765,14 @@ Checking test 179 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 288.959428 - 0: The maximum resident set size (KB) = 3031808 + 0: The total amount of wall time = 278.801136 + 0: The maximum resident set size (KB) = 3051240 Test 179 atmaero_control_p8_rad_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/atmaero_control_p8_rad_micro_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/atmaero_control_p8_rad_micro_intel Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5816,14 +5816,14 @@ Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 285.754500 - 0: The maximum resident set size (KB) = 3050948 + 0: The total amount of wall time = 286.088738 + 0: The maximum resident set size (KB) = 3054324 Test 180 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_atmaq_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/regional_atmaq_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_atmaq_intel Checking test 181 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5839,14 +5839,14 @@ Checking test 181 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 634.624024 - 0: The maximum resident set size (KB) = 1466940 + 0: The total amount of wall time = 624.014499 + 0: The maximum resident set size (KB) = 1482420 Test 181 regional_atmaq_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/regional_atmaq_debug_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_atmaq_debug_intel Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5860,14 +5860,14 @@ Checking test 182 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1198.353956 - 0: The maximum resident set size (KB) = 1402008 + 0: The total amount of wall time = 1188.105617 + 0: The maximum resident set size (KB) = 1393380 Test 182 regional_atmaq_debug_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_atmaq_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/regional_atmaq_faster_intel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_atmaq_faster_intel Checking test 183 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5883,14 +5883,14 @@ Checking test 183 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 558.354513 - 0: The maximum resident set size (KB) = 1467344 + 0: The total amount of wall time = 544.681674 + 0: The maximum resident set size (KB) = 1460356 Test 183 regional_atmaq_faster_intel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_c48_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_c48_gnu Checking test 184 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5929,14 +5929,14 @@ Checking test 184 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.305021 -0: The maximum resident set size (KB) = 702472 +0: The total amount of wall time = 682.040920 +0: The maximum resident set size (KB) = 704076 Test 184 control_c48_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_stochy_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_stochy_gnu Checking test 185 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5947,14 +5947,14 @@ Checking test 185 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 659.759543 - 0: The maximum resident set size (KB) = 478984 + 0: The total amount of wall time = 657.830330 + 0: The maximum resident set size (KB) = 480288 Test 185 control_stochy_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_ras_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_ras_gnu Checking test 186 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5965,14 +5965,14 @@ Checking test 186 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 838.236417 - 0: The maximum resident set size (KB) = 486200 + 0: The total amount of wall time = 848.372706 + 0: The maximum resident set size (KB) = 487392 Test 186 control_ras_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_p8_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_p8_gnu Checking test 187 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6019,14 +6019,14 @@ Checking test 187 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 = 906.603893 - 0: The maximum resident set size (KB) = 1236140 + 0: The total amount of wall time = 888.732107 + 0: The maximum resident set size (KB) = 1238284 Test 187 control_p8_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_flake_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_flake_gnu Checking test 188 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6037,14 +6037,14 @@ Checking test 188 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1548.781859 - 0: The maximum resident set size (KB) = 524240 + 0: The total amount of wall time = 1554.743111 + 0: The maximum resident set size (KB) = 526940 Test 188 control_flake_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_control_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_gnu Checking test 189 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6091,14 +6091,14 @@ Checking test 189 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1474.941447 - 0: The maximum resident set size (KB) = 831720 + 0: The total amount of wall time = 1433.941262 + 0: The maximum resident set size (KB) = 829780 Test 189 rap_control_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_decomp_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_decomp_gnu Checking test 190 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6145,14 +6145,14 @@ Checking test 190 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1482.253848 - 0: The maximum resident set size (KB) = 831296 + 0: The total amount of wall time = 1454.594308 + 0: The maximum resident set size (KB) = 832092 Test 190 rap_decomp_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_2threads_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_2threads_gnu Checking test 191 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6199,14 +6199,14 @@ Checking test 191 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1329.854840 - 0: The maximum resident set size (KB) = 900116 + 0: The total amount of wall time = 1360.095006 + 0: The maximum resident set size (KB) = 897040 Test 191 rap_2threads_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_restart_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_restart_gnu Checking test 192 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6245,14 +6245,14 @@ Checking test 192 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 727.664493 - 0: The maximum resident set size (KB) = 551360 + 0: The total amount of wall time = 715.304294 + 0: The maximum resident set size (KB) = 551632 Test 192 rap_restart_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_sfcdiff_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_sfcdiff_gnu Checking test 193 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6299,14 +6299,14 @@ Checking test 193 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1495.157622 - 0: The maximum resident set size (KB) = 830516 + 0: The total amount of wall time = 1474.360223 + 0: The maximum resident set size (KB) = 829756 Test 193 rap_sfcdiff_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_sfcdiff_decomp_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_sfcdiff_decomp_gnu Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6353,14 +6353,14 @@ Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1457.815833 - 0: The maximum resident set size (KB) = 831620 + 0: The total amount of wall time = 1451.355373 + 0: The maximum resident set size (KB) = 836824 Test 194 rap_sfcdiff_decomp_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_sfcdiff_restart_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_sfcdiff_restart_gnu Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6399,69 +6399,15 @@ Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1071.273122 - 0: The maximum resident set size (KB) = 554200 + 0: The total amount of wall time = 1083.948733 + 0: The maximum resident set size (KB) = 549648 Test 195 rap_sfcdiff_restart_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_gnu Checking test 196 hrrr_control_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 1440.643332 - 0: The maximum resident set size (KB) = 827016 - -Test 196 hrrr_control_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_qr_gnu -Checking test 197 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6507,15 +6453,15 @@ Checking test 197 hrrr_control_qr_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 = 1465.555149 - 0: The maximum resident set size (KB) = 839008 + 0: The total amount of wall time = 1458.571569 + 0: The maximum resident set size (KB) = 825840 -Test 197 hrrr_control_qr_gnu PASS +Test 196 hrrr_control_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_2threads_gnu -Checking test 198 hrrr_control_2threads_gnu results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_qr_gnu +Checking test 197 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6561,14 +6507,68 @@ Checking test 198 hrrr_control_2threads_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 = 1517.215822 - 0: The maximum resident set size (KB) = 891272 + 0: The total amount of wall time = 1511.032932 + 0: The maximum resident set size (KB) = 837736 + +Test 197 hrrr_control_qr_gnu PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_2threads_gnu +Checking test 198 hrrr_control_2threads_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1488.383700 + 0: The maximum resident set size (KB) = 890612 Test 198 hrrr_control_2threads_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_decomp_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_decomp_gnu Checking test 199 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6584,73 +6584,73 @@ Checking test 199 hrrr_control_decomp_gnu results .... Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1445.857415 - 0: The maximum resident set size (KB) = 830196 + 0: The total amount of wall time = 1388.131908 + 0: The maximum resident set size (KB) = 832172 Test 199 hrrr_control_decomp_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_restart_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_restart_gnu Checking test 200 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1046.165153 - 0: The maximum resident set size (KB) = 547840 + 0: The total amount of wall time = 1051.110399 + 0: The maximum resident set size (KB) = 548944 Test 200 hrrr_control_restart_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_restart_qr_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_restart_qr_gnu Checking test 201 hrrr_control_restart_qr_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 = 1060.018931 - 0: The maximum resident set size (KB) = 564784 + 0: The total amount of wall time = 1043.485516 + 0: The maximum resident set size (KB) = 559744 Test 201 hrrr_control_restart_qr_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_v1beta_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_v1beta_gnu Checking test 202 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6697,14 +6697,14 @@ Checking test 202 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1453.366653 - 0: The maximum resident set size (KB) = 826596 + 0: The total amount of wall time = 1431.125266 + 0: The maximum resident set size (KB) = 830772 Test 202 rrfs_v1beta_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_hrrr_warm_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_gnu Checking test 203 rrfs_smoke_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6720,14 +6720,14 @@ Checking test 203 rrfs_smoke_conus13km_hrrr_warm_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 = 801.693357 - 0: The maximum resident set size (KB) = 665492 + 0: The total amount of wall time = 802.477142 + 0: The maximum resident set size (KB) = 666100 Test 203 rrfs_smoke_conus13km_hrrr_warm_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_hrrr_warm_qr_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_qr_gnu Checking test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6743,14 +6743,14 @@ Checking test 204 rrfs_smoke_conus13km_hrrr_warm_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 = 881.639875 - 0: The maximum resident set size (KB) = 622000 + 0: The total amount of wall time = 891.050494 + 0: The maximum resident set size (KB) = 622360 Test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu Checking test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6759,14 +6759,14 @@ Checking test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1076.309312 - 0: The maximum resident set size (KB) = 662752 + 0: The total amount of wall time = 1059.715679 + 0: The maximum resident set size (KB) = 665872 Test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_radar_tten_warm_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_radar_tten_warm_gnu Checking test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6775,14 +6775,14 @@ Checking test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 792.984919 - 0: The maximum resident set size (KB) = 667808 + 0: The total amount of wall time = 804.319031 + 0: The maximum resident set size (KB) = 667812 Test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_conus13km_hrrr_warm_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_conus13km_hrrr_warm_gnu Checking test 207 rrfs_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6798,274 +6798,274 @@ Checking test 207 rrfs_conus13km_hrrr_warm_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 = 779.147897 - 0: The maximum resident set size (KB) = 642436 + 0: The total amount of wall time = 769.212192 + 0: The maximum resident set size (KB) = 642512 Test 207 rrfs_conus13km_hrrr_warm_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu Checking test 208 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 441.169778 - 0: The maximum resident set size (KB) = 654456 + 0: The total amount of wall time = 420.143797 + 0: The maximum resident set size (KB) = 656612 Test 208 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu Checking test 209 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 466.926349 - 0: The maximum resident set size (KB) = 678236 + 0: The total amount of wall time = 477.446485 + 0: The maximum resident set size (KB) = 678188 Test 209 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_diag_debug_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_diag_debug_gnu Checking test 210 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 = 125.390125 - 0: The maximum resident set size (KB) = 530564 + 0: The total amount of wall time = 120.422325 + 0: The maximum resident set size (KB) = 522880 Test 210 control_diag_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/regional_debug_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_debug_gnu Checking test 211 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 = 608.626773 - 0: The maximum resident set size (KB) = 591852 + 0: The total amount of wall time = 739.336229 + 0: The maximum resident set size (KB) = 586268 Test 211 regional_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_control_debug_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_debug_gnu Checking test 212 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 = 170.230022 - 0: The maximum resident set size (KB) = 843092 + 0: The total amount of wall time = 169.445286 + 0: The maximum resident set size (KB) = 842284 Test 212 rap_control_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_debug_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_debug_gnu Checking test 213 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 = 167.582168 - 0: The maximum resident set size (KB) = 838948 + 0: The total amount of wall time = 165.438426 + 0: The maximum resident set size (KB) = 837060 Test 213 hrrr_control_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_diag_debug_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_diag_debug_gnu Checking test 214 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 = 211.945191 - 0: The maximum resident set size (KB) = 929712 + 0: The total amount of wall time = 207.142845 + 0: The maximum resident set size (KB) = 921588 Test 214 rap_diag_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_noah_sfcdiff_cires_ugwp_debug_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 215 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 = 275.362926 - 0: The maximum resident set size (KB) = 840968 + 0: The total amount of wall time = 271.612347 + 0: The maximum resident set size (KB) = 832604 Test 215 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_progcld_thompson_debug_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_progcld_thompson_debug_gnu Checking test 216 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 = 174.208429 - 0: The maximum resident set size (KB) = 841240 + 0: The total amount of wall time = 170.291864 + 0: The maximum resident set size (KB) = 843352 Test 216 rap_progcld_thompson_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_v1beta_debug_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_v1beta_debug_gnu Checking test 217 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 = 174.101253 - 0: The maximum resident set size (KB) = 840624 + 0: The total amount of wall time = 171.503669 + 0: The maximum resident set size (KB) = 837164 Test 217 rrfs_v1beta_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_ras_debug_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_ras_debug_gnu Checking test 218 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 = 102.285648 - 0: The maximum resident set size (KB) = 477808 + 0: The total amount of wall time = 101.034727 + 0: The maximum resident set size (KB) = 482716 Test 218 control_ras_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_stochy_debug_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_stochy_debug_gnu Checking test 219 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.771718 - 0: The maximum resident set size (KB) = 473504 + 0: The total amount of wall time = 117.377604 + 0: The maximum resident set size (KB) = 473112 Test 219 control_stochy_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_debug_p8_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_debug_p8_gnu Checking test 220 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 = 117.552788 - 0: The maximum resident set size (KB) = 1232012 + 0: The total amount of wall time = 116.990018 + 0: The maximum resident set size (KB) = 1228320 Test 220 control_debug_p8_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_debug_gnu Checking test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 627.093659 - 0: The maximum resident set size (KB) = 680956 + 0: The total amount of wall time = 624.971407 + 0: The maximum resident set size (KB) = 679904 Test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu Checking test 222 rrfs_smoke_conus13km_hrrr_warm_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 = 756.405868 - 0: The maximum resident set size (KB) = 674708 + 0: The total amount of wall time = 722.553124 + 0: The maximum resident set size (KB) = 673100 Test 222 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_debugs_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_conus13km_hrrr_warm_debug_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_debugs_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_conus13km_hrrr_warm_debug_gnu Checking test 223 rrfs_conus13km_hrrr_warm_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 605.978058 - 0: The maximum resident set size (KB) = 660388 + 0: The total amount of wall time = 598.736956 + 0: The maximum resident set size (KB) = 656500 Test 223 rrfs_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_flake_debug_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_flake_debug_gnu Checking test 224 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 = 172.395139 - 0: The maximum resident set size (KB) = 841264 + 0: The total amount of wall time = 173.905588 + 0: The maximum resident set size (KB) = 840584 Test 224 rap_flake_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_clm_lake_debug_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_clm_lake_debug_gnu Checking test 225 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 = 196.789338 - 0: The maximum resident set size (KB) = 842608 + 0: The total amount of wall time = 191.587238 + 0: The maximum resident set size (KB) = 845096 Test 225 rap_clm_lake_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/control_wam_debug_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_wam_debug_gnu Checking test 226 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 188.098460 - 0: The maximum resident set size (KB) = 192804 + 0: The total amount of wall time = 179.896407 + 0: The maximum resident set size (KB) = 192260 Test 226 control_wam_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_control_dyn32_phy32_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_dyn32_phy32_gnu Checking test 227 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7112,14 +7112,14 @@ Checking test 227 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 = 1455.854461 - 0: The maximum resident set size (KB) = 691724 + 0: The total amount of wall time = 1450.094285 + 0: The maximum resident set size (KB) = 684408 Test 227 rap_control_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_dyn32_phy32_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_dyn32_phy32_gnu Checking test 228 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7166,14 +7166,14 @@ Checking test 228 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 = 737.885782 - 0: The maximum resident set size (KB) = 686140 + 0: The total amount of wall time = 728.783284 + 0: The maximum resident set size (KB) = 688716 Test 228 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_qr_dyn32_phy32_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_qr_dyn32_phy32_gnu Checking test 229 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7220,14 +7220,14 @@ Checking test 229 hrrr_control_qr_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 = 756.835467 - 0: The maximum resident set size (KB) = 691376 + 0: The total amount of wall time = 780.219899 + 0: The maximum resident set size (KB) = 692160 Test 229 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_2threads_dyn32_phy32_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_2threads_dyn32_phy32_gnu Checking test 230 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7274,14 +7274,14 @@ Checking test 230 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 = 1376.399128 - 0: The maximum resident set size (KB) = 727152 + 0: The total amount of wall time = 1350.725751 + 0: The maximum resident set size (KB) = 725968 Test 230 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_2threads_dyn32_phy32_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_2threads_dyn32_phy32_gnu Checking test 231 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7328,14 +7328,14 @@ Checking test 231 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 = 772.899752 - 0: The maximum resident set size (KB) = 726096 + 0: The total amount of wall time = 768.679000 + 0: The maximum resident set size (KB) = 723444 Test 231 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_decomp_dyn32_phy32_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_decomp_dyn32_phy32_gnu Checking test 232 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7382,14 +7382,14 @@ Checking test 232 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 = 730.653381 - 0: The maximum resident set size (KB) = 683948 + 0: The total amount of wall time = 715.877377 + 0: The maximum resident set size (KB) = 683404 Test 232 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_restart_dyn32_phy32_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_restart_dyn32_phy32_gnu Checking test 233 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7428,42 +7428,42 @@ Checking test 233 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 = 1081.059305 - 0: The maximum resident set size (KB) = 515216 + 0: The total amount of wall time = 1078.642869 + 0: The maximum resident set size (KB) = 511800 Test 233 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_restart_dyn32_phy32_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_restart_dyn32_phy32_gnu Checking test 234 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 = 370.404340 - 0: The maximum resident set size (KB) = 508540 + 0: The total amount of wall time = 354.783957 + 0: The maximum resident set size (KB) = 509196 Test 234 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_restart_qr_dyn32_phy32_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_restart_qr_dyn32_phy32_gnu Checking test 235 hrrr_control_restart_qr_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 = 374.025533 - 0: The maximum resident set size (KB) = 522268 + 0: The total amount of wall time = 379.349593 + 0: The maximum resident set size (KB) = 524764 Test 235 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_phy32_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_phy32_gnu Checking test 236 rrfs_smoke_conus13km_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7479,14 +7479,14 @@ Checking test 236 rrfs_smoke_conus13km_phy32_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 = 808.907547 - 0: The maximum resident set size (KB) = 582608 + 0: The total amount of wall time = 779.031318 + 0: The maximum resident set size (KB) = 581812 Test 236 rrfs_smoke_conus13km_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_phy32_qr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_phy32_qr_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_phy32_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_phy32_qr_gnu Checking test 237 rrfs_smoke_conus13km_phy32_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7502,38 +7502,38 @@ Checking test 237 rrfs_smoke_conus13km_phy32_qr_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 = 803.296734 - 0: The maximum resident set size (KB) = 574856 + 0: The total amount of wall time = 787.432576 + 0: The maximum resident set size (KB) = 575216 Test 237 rrfs_smoke_conus13km_phy32_qr_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu Checking test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 416.599210 - 0: The maximum resident set size (KB) = 571040 + 0: The total amount of wall time = 391.181295 + 0: The maximum resident set size (KB) = 570288 Test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu Checking test 239 rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 393.094122 - 0: The maximum resident set size (KB) = 598060 + 0: The total amount of wall time = 405.695026 + 0: The maximum resident set size (KB) = 593180 Test 239 rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_control_dyn64_phy32_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_dyn64_phy32_gnu Checking test 240 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7580,56 +7580,56 @@ Checking test 240 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 = 1068.717960 - 0: The maximum resident set size (KB) = 707724 + 0: The total amount of wall time = 1072.842191 + 0: The maximum resident set size (KB) = 710372 Test 240 rap_control_dyn64_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_control_debug_dyn32_phy32_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_debug_dyn32_phy32_gnu Checking test 241 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 = 174.630317 - 0: The maximum resident set size (KB) = 695312 + 0: The total amount of wall time = 169.934642 + 0: The maximum resident set size (KB) = 700560 Test 241 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/hrrr_control_debug_dyn32_phy32_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_debug_dyn32_phy32_gnu Checking test 242 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 = 168.219346 - 0: The maximum resident set size (KB) = 694888 + 0: The total amount of wall time = 165.431829 + 0: The maximum resident set size (KB) = 695860 Test 242 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/rap_control_dyn64_phy32_debug_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_dyn64_phy32_debug_gnu Checking test 243 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 = 204.946157 - 0: The maximum resident set size (KB) = 718916 + 0: The total amount of wall time = 204.106958 + 0: The maximum resident set size (KB) = 721788 Test 243 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_control_p8_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_p8_gnu Checking test 244 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7694,14 +7694,14 @@ Checking test 244 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 = 2165.742095 - 0: The maximum resident set size (KB) = 1430180 + 0: The total amount of wall time = 2045.689484 + 0: The maximum resident set size (KB) = 1429128 Test 244 cpld_control_p8_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_control_nowave_noaero_p8_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c96_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_nowave_noaero_p8_gnu Checking test 245 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7763,14 +7763,14 @@ Checking test 245 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 = 1205.592244 - 0: The maximum resident set size (KB) = 1331508 + 0: The total amount of wall time = 1225.806840 + 0: The maximum resident set size (KB) = 1330584 Test 245 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_debug_p8_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_debug_p8_gnu Checking test 246 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7823,14 +7823,14 @@ Checking test 246 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 = 869.484721 - 0: The maximum resident set size (KB) = 1439180 + 0: The total amount of wall time = 801.994141 + 0: The maximum resident set size (KB) = 1421044 Test 246 cpld_debug_p8_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_control_pdlib_p8_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_pdlib_p8_gnu Checking test 247 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7894,14 +7894,14 @@ Checking test 247 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 = 1690.353167 - 0: The maximum resident set size (KB) = 1299720 + 0: The total amount of wall time = 1725.799345 + 0: The maximum resident set size (KB) = 1294368 Test 247 cpld_control_pdlib_p8_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/cpld_debug_pdlib_p8_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_debug_pdlib_p8_gnu Checking test 248 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7953,25 +7953,25 @@ Checking test 248 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 = 894.280981 - 0: The maximum resident set size (KB) = 1298380 + 0: The total amount of wall time = 903.076475 + 0: The maximum resident set size (KB) = 1301340 Test 248 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_133073/datm_cdeps_control_cfsr_gnu +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_control_cfsr_gnu Checking test 249 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.501547 - 0: The maximum resident set size (KB) = 666504 + 0: The total amount of wall time = 171.980430 + 0: The maximum resident set size (KB) = 665060 Test 249 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Mon Jul 10 01:23:36 UTC 2023 -Elapsed time: 02h:29m:40s. Have a nice day! +Fri Jul 14 23:42:09 UTC 2023 +Elapsed time: 02h:01m:37s. Have a nice day! diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 0afee89309..19f24ec7e8 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,53 +1,52 @@ -Sat Jul 8 20:45:57 UTC 2023 +Fri Jul 14 08:44:21 UTC 2023 Start Regression test -Testing UFSWM Hash: 424d39f47a40bab187a41fa2c54087106ee4e80f +Testing UFSWM Hash: 328cb7309d2abb5a35b24cd605c9c867a6c32152 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 5840cd1931e2e32b9dfded0c19049d0f1ec3d04c ../CICE-interface/CICE (CICE6.0.0-440-g5840cd1) 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1402-g9923d6d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - b8ee3bd92ea9e47707c428cc666b47456fd20813 ../FV3 (remotes/origin/rrfs-32bit-physics) + b6901a95012bfe2fb65fc2bd86a67749f7d80441 ../FV3 (remotes/origin/hr2_land1) b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) - e1260f1ee711f66a1141010d13511a69c0f8637b ../NOAHMP-interface/noahmp (v3.7.1-292-ge1260f1) + 8dbe01268bd76a0c1860200d2fc152aa600e149f ../NOAHMP-interface/noahmp (v3.7.1-302-g8dbe012) c4b116886b5ef9af5fb4942d7161074df3402732 ../WW3 (6.07.1-325-gc4b11688) 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atm_debug_dyn32_intel elapsed time 300 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 2019 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1804 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 1842 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1937 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1937 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1903 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1909 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 155 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 283 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 237 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 86 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1969 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 1969 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 227 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 2543 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1807 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 227 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 1894 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 1970 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 1966 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 1965 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 267 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 2114 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 2094 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 250 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 3343 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 2191 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 228 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_debug_dyn32_intel elapsed time 313 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 2032 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1831 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 1851 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 1946 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1873 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1873 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1933 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 160 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 1399 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 2502 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 122 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 2109 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 2091 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 247 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 2629 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 3077 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 216 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 1904 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 1979 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_intel elapsed time 1979 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 241 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 1754 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 2101 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 251 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 3338 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 2146 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 238 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 1804 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-20230705/cpld_control_p8_mixedmode_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/cpld_control_p8_mixedmode_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_mixedmode_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/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 +111,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 419.512964 - 0: The maximum resident set size (KB) = 1746176 + 0: The total amount of wall time = 413.640517 + 0: The maximum resident set size (KB) = 1737572 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/cpld_control_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -183,14 +182,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 = 291.985681 - 0: The maximum resident set size (KB) = 1591468 + 0: The total amount of wall time = 291.417724 + 0: The maximum resident set size (KB) = 1601600 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/cpld_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -255,14 +254,14 @@ Checking test 003 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 = 460.383290 - 0: The maximum resident set size (KB) = 1792140 + 0: The total amount of wall time = 451.465247 + 0: The maximum resident set size (KB) = 1774972 Test 003 cpld_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/cpld_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -315,14 +314,14 @@ Checking test 004 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 = 261.725461 - 0: The maximum resident set size (KB) = 1499264 + 0: The total amount of wall time = 268.097646 + 0: The maximum resident set size (KB) = 1486904 Test 004 cpld_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/cpld_control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -387,14 +386,14 @@ Checking test 005 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 = 457.341722 - 0: The maximum resident set size (KB) = 1796972 + 0: The total amount of wall time = 453.970041 + 0: The maximum resident set size (KB) = 1781712 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/cpld_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -447,14 +446,14 @@ Checking test 006 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 = 265.791817 - 0: The maximum resident set size (KB) = 1497948 + 0: The total amount of wall time = 274.699632 + 0: The maximum resident set size (KB) = 1505784 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/cpld_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -507,14 +506,14 @@ Checking test 007 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 = 476.343316 - 0: The maximum resident set size (KB) = 1990668 + 0: The total amount of wall time = 475.650604 + 0: The maximum resident set size (KB) = 1972108 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/cpld_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -567,14 +566,14 @@ Checking test 008 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 = 458.556926 - 0: The maximum resident set size (KB) = 1793608 + 0: The total amount of wall time = 464.394500 + 0: The maximum resident set size (KB) = 1774748 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/cpld_mpi_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -627,14 +626,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 382.344451 - 0: The maximum resident set size (KB) = 1723196 + 0: The total amount of wall time = 379.668718 + 0: The maximum resident set size (KB) = 1730788 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/cpld_control_ciceC_p8_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/cpld_control_ciceC_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_ciceC_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -699,14 +698,14 @@ Checking test 010 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 = 458.280091 - 0: The maximum resident set size (KB) = 1768200 + 0: The total amount of wall time = 455.437667 + 0: The maximum resident set size (KB) = 1772612 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/cpld_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/cpld_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -770,14 +769,14 @@ Checking test 011 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 = 348.680413 - 0: The maximum resident set size (KB) = 1637216 + 0: The total amount of wall time = 343.211023 + 0: The maximum resident set size (KB) = 1617540 -Test 011 cpld_control_noaero_p8_intel PASS +Test 011 cpld_control_noaero_p8_intel PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/cpld_control_c96_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/cpld_control_nowave_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_c96_noaero_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_control_nowave_noaero_p8_intel Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -839,14 +838,14 @@ Checking test 012 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 = 346.391507 - 0: The maximum resident set size (KB) = 1670768 + 0: The total amount of wall time = 349.142939 + 0: The maximum resident set size (KB) = 1672560 Test 012 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/cpld_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/cpld_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_debug_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_debug_p8_intel Checking test 013 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -899,14 +898,14 @@ Checking test 013 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 = 692.081015 - 0: The maximum resident set size (KB) = 1753396 + 0: The total amount of wall time = 681.229196 + 0: The maximum resident set size (KB) = 1830232 Test 013 cpld_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/cpld_debug_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/cpld_debug_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_debug_noaero_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_debug_noaero_p8_intel Checking test 014 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -958,83 +957,14 @@ Checking test 014 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 = 486.409316 - 0: The maximum resident set size (KB) = 1593148 + 0: The total amount of wall time = 475.406905 + 0: The maximum resident set size (KB) = 1623856 Test 014 cpld_debug_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/cpld_control_noaero_p8_agrid_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/cpld_control_noaero_p8_agrid_intel -Checking test 015 cpld_control_noaero_p8_agrid_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 374.656522 - 0: The maximum resident set size (KB) = 1624260 - -Test 015 cpld_control_noaero_p8_agrid_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/cpld_control_c48_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/cpld_control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_c48_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1084,14 +1014,14 @@ Checking test 016 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 = 795.490225 - 0: The maximum resident set size (KB) = 2776636 + 0: The total amount of wall time = 803.918608 + 0: The maximum resident set size (KB) = 2760188 Test 016 cpld_control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/cpld_control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_faster_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1156,14 +1086,14 @@ Checking test 017 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 = 434.564846 - 0: The maximum resident set size (KB) = 1769920 + 0: The total amount of wall time = 431.069324 + 0: The maximum resident set size (KB) = 1772820 Test 017 cpld_control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_flake_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_flake_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_flake_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1174,14 +1104,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 254.372314 - 0: The maximum resident set size (KB) = 618504 + 0: The total amount of wall time = 271.117372 + 0: The maximum resident set size (KB) = 618820 Test 018 control_flake_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_CubedSphereGrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1208,28 +1138,28 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 178.033550 - 0: The maximum resident set size (KB) = 570508 + 0: The total amount of wall time = 187.193825 + 0: The maximum resident set size (KB) = 572652 Test 019 control_CubedSphereGrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_parallel_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_CubedSphereGrid_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_parallel_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_CubedSphereGrid_parallel_intel Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 179.818510 - 0: The maximum resident set size (KB) = 569940 + 0: The total amount of wall time = 182.714026 + 0: The maximum resident set size (KB) = 568964 Test 020 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_latlon_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_latlon_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_latlon_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_latlon_intel Checking test 021 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1240,14 +1170,14 @@ Checking test 021 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 182.358487 - 0: The maximum resident set size (KB) = 571384 + 0: The total amount of wall time = 192.230271 + 0: The maximum resident set size (KB) = 569156 Test 021 control_latlon_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_wrtGauss_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_wrtGauss_netcdf_parallel_intel Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1258,14 +1188,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 190.695252 - 0: The maximum resident set size (KB) = 569904 + 0: The total amount of wall time = 196.432862 + 0: The maximum resident set size (KB) = 571484 Test 022 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_c48_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_c48_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_c48_intel Checking test 023 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1304,14 +1234,14 @@ Checking test 023 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 = 596.331506 -0: The maximum resident set size (KB) = 794576 +0: The total amount of wall time = 594.619362 +0: The maximum resident set size (KB) = 788872 Test 023 control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_c192_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_c192_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_c192_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_c192_intel Checking test 024 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1322,14 +1252,14 @@ Checking test 024 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 720.508028 - 0: The maximum resident set size (KB) = 694360 + 0: The total amount of wall time = 726.453684 + 0: The maximum resident set size (KB) = 691436 Test 024 control_c192_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_c384_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_c384_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_c384_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_c384_intel Checking test 025 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1340,14 +1270,14 @@ Checking test 025 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 929.999767 - 0: The maximum resident set size (KB) = 1060076 + 0: The total amount of wall time = 930.558503 + 0: The maximum resident set size (KB) = 1058524 Test 025 control_c384_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_c384gdas_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_c384gdas_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_c384gdas_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_c384gdas_intel Checking test 026 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1390,14 +1320,14 @@ Checking test 026 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 = 800.445321 - 0: The maximum resident set size (KB) = 1198864 + 0: The total amount of wall time = 811.988485 + 0: The maximum resident set size (KB) = 1193408 Test 026 control_c384gdas_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_stochy_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_stochy_intel Checking test 027 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1408,28 +1338,28 @@ Checking test 027 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 124.119255 - 0: The maximum resident set size (KB) = 582264 + 0: The total amount of wall time = 126.244726 + 0: The maximum resident set size (KB) = 581100 Test 027 control_stochy_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_stochy_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_stochy_restart_intel Checking test 028 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 = 67.950977 - 0: The maximum resident set size (KB) = 390740 + 0: The total amount of wall time = 67.583047 + 0: The maximum resident set size (KB) = 397236 Test 028 control_stochy_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_lndp_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_lndp_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_lndp_intel Checking test 029 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1440,14 +1370,14 @@ Checking test 029 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 112.671970 - 0: The maximum resident set size (KB) = 574356 + 0: The total amount of wall time = 115.424093 + 0: The maximum resident set size (KB) = 573724 Test 029 control_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_iovr4_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_iovr4_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_iovr4_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_iovr4_intel Checking test 030 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1462,14 +1392,14 @@ Checking test 030 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 190.423420 - 0: The maximum resident set size (KB) = 568592 + 0: The total amount of wall time = 193.722328 + 0: The maximum resident set size (KB) = 568132 Test 030 control_iovr4_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_iovr5_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_iovr5_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_iovr5_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_iovr5_intel Checking test 031 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1484,14 +1414,14 @@ Checking test 031 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 190.083512 - 0: The maximum resident set size (KB) = 572268 + 0: The total amount of wall time = 190.169953 + 0: The maximum resident set size (KB) = 572416 Test 031 control_iovr5_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_p8_intel Checking test 032 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1538,14 +1468,14 @@ Checking test 032 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 = 229.250208 - 0: The maximum resident set size (KB) = 1552412 + 0: The total amount of wall time = 229.501651 + 0: The maximum resident set size (KB) = 1537572 Test 032 control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_restart_p8_intel Checking test 033 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1584,14 +1514,14 @@ Checking test 033 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 118.346414 - 0: The maximum resident set size (KB) = 774312 + 0: The total amount of wall time = 118.873891 + 0: The maximum resident set size (KB) = 786256 Test 033 control_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_qr_p8_intel Checking test 034 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1638,14 +1568,14 @@ Checking test 034 control_qr_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 = 228.503931 - 0: The maximum resident set size (KB) = 1541256 + 0: The total amount of wall time = 234.531544 + 0: The maximum resident set size (KB) = 1542408 Test 034 control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_restart_qr_p8_intel Checking test 035 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1684,14 +1614,14 @@ Checking test 035 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 119.535687 - 0: The maximum resident set size (KB) = 779016 + 0: The total amount of wall time = 131.816346 + 0: The maximum resident set size (KB) = 789252 Test 035 control_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_decomp_p8_intel Checking test 036 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1734,14 +1664,14 @@ Checking test 036 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.286463 - 0: The maximum resident set size (KB) = 1528668 + 0: The total amount of wall time = 239.522416 + 0: The maximum resident set size (KB) = 1534340 Test 036 control_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_2threads_p8_intel Checking test 037 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1784,14 +1714,14 @@ Checking test 037 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 210.365666 - 0: The maximum resident set size (KB) = 1622196 + 0: The total amount of wall time = 215.948281 + 0: The maximum resident set size (KB) = 1621764 Test 037 control_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_p8_lndp_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_p8_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_lndp_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_p8_lndp_intel Checking test 038 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1810,14 +1740,14 @@ Checking test 038 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 427.055538 - 0: The maximum resident set size (KB) = 1528192 + 0: The total amount of wall time = 431.334326 + 0: The maximum resident set size (KB) = 1537028 Test 038 control_p8_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_p8_rrtmgp_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_p8_rrtmgp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_rrtmgp_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_p8_rrtmgp_intel Checking test 039 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1864,14 +1794,14 @@ Checking test 039 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 = 303.570463 - 0: The maximum resident set size (KB) = 1612392 + 0: The total amount of wall time = 303.152354 + 0: The maximum resident set size (KB) = 1608564 Test 039 control_p8_rrtmgp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_p8_mynn_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_p8_mynn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_mynn_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_p8_mynn_intel Checking test 040 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1918,14 +1848,14 @@ Checking test 040 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 = 230.852272 - 0: The maximum resident set size (KB) = 1551768 + 0: The total amount of wall time = 234.319719 + 0: The maximum resident set size (KB) = 1539816 Test 040 control_p8_mynn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/merra2_thompson_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/merra2_thompson_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/merra2_thompson_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/merra2_thompson_intel Checking test 041 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1972,14 +1902,14 @@ Checking test 041 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 = 258.889072 - 0: The maximum resident set size (KB) = 1552060 + 0: The total amount of wall time = 257.860274 + 0: The maximum resident set size (KB) = 1550828 Test 041 merra2_thompson_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/regional_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_control_intel Checking test 042 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1990,28 +1920,28 @@ Checking test 042 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 394.100111 - 0: The maximum resident set size (KB) = 786352 + 0: The total amount of wall time = 398.657814 + 0: The maximum resident set size (KB) = 783972 -Test 042 regional_control_intel PASS +Test 042 regional_control_intel PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/regional_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_restart_intel Checking test 043 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 = 201.044936 - 0: The maximum resident set size (KB) = 777560 + 0: The total amount of wall time = 212.988948 + 0: The maximum resident set size (KB) = 778556 Test 043 regional_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/regional_control_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_control_qr_intel Checking test 044 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2022,28 +1952,28 @@ Checking test 044 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 400.280037 - 0: The maximum resident set size (KB) = 787092 + 0: The total amount of wall time = 410.730023 + 0: The maximum resident set size (KB) = 785000 Test 044 regional_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/regional_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_restart_qr_intel Checking test 045 regional_restart_qr_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 = 199.588224 - 0: The maximum resident set size (KB) = 780464 + 0: The total amount of wall time = 201.760143 + 0: The maximum resident set size (KB) = 780868 Test 045 regional_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/regional_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_decomp_intel Checking test 046 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2054,14 +1984,14 @@ Checking test 046 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 416.260085 - 0: The maximum resident set size (KB) = 779120 + 0: The total amount of wall time = 425.242934 + 0: The maximum resident set size (KB) = 784264 Test 046 regional_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/regional_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_2threads_intel Checking test 047 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2072,28 +2002,28 @@ Checking test 047 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 237.962009 - 0: The maximum resident set size (KB) = 769016 + 0: The total amount of wall time = 244.842307 + 0: The maximum resident set size (KB) = 775980 Test 047 regional_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/regional_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/regional_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_netcdf_parallel_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_netcdf_parallel_intel Checking test 048 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 = 398.308131 - 0: The maximum resident set size (KB) = 780896 + 0: The total amount of wall time = 393.512558 + 0: The maximum resident set size (KB) = 778156 Test 048 regional_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/regional_2dwrtdecomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_2dwrtdecomp_intel Checking test 049 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2104,14 +2034,14 @@ Checking test 049 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 394.003354 - 0: The maximum resident set size (KB) = 787932 + 0: The total amount of wall time = 402.736514 + 0: The maximum resident set size (KB) = 788704 Test 049 regional_2dwrtdecomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_control_intel Checking test 050 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2158,14 +2088,14 @@ Checking test 050 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 = 593.717077 - 0: The maximum resident set size (KB) = 955336 + 0: The total amount of wall time = 594.859341 + 0: The maximum resident set size (KB) = 948668 Test 050 rap_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/regional_spp_sppt_shum_skeb_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/regional_spp_sppt_shum_skeb_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_spp_sppt_shum_skeb_intel Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2176,14 +2106,14 @@ Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 313.635896 - 0: The maximum resident set size (KB) = 1098156 + 0: The total amount of wall time = 322.791861 + 0: The maximum resident set size (KB) = 1093336 Test 051 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_decomp_intel Checking test 052 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2230,14 +2160,14 @@ Checking test 052 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 = 616.050421 - 0: The maximum resident set size (KB) = 947684 + 0: The total amount of wall time = 616.545286 + 0: The maximum resident set size (KB) = 943412 Test 052 rap_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_2threads_intel Checking test 053 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2284,14 +2214,14 @@ Checking test 053 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 = 554.023656 - 0: The maximum resident set size (KB) = 1028556 + 0: The total amount of wall time = 556.899603 + 0: The maximum resident set size (KB) = 1030976 Test 053 rap_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_restart_intel Checking test 054 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2330,14 +2260,14 @@ Checking test 054 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 = 297.358245 - 0: The maximum resident set size (KB) = 829792 + 0: The total amount of wall time = 297.694914 + 0: The maximum resident set size (KB) = 828812 Test 054 rap_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_sfcdiff_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_sfcdiff_intel Checking test 055 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2384,14 +2314,14 @@ Checking test 055 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 = 595.133065 - 0: The maximum resident set size (KB) = 955864 + 0: The total amount of wall time = 592.285664 + 0: The maximum resident set size (KB) = 945140 Test 055 rap_sfcdiff_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_sfcdiff_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_sfcdiff_decomp_intel Checking test 056 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2438,14 +2368,14 @@ Checking test 056 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 631.578771 - 0: The maximum resident set size (KB) = 946408 + 0: The total amount of wall time = 630.438700 + 0: The maximum resident set size (KB) = 936260 Test 056 rap_sfcdiff_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_sfcdiff_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_sfcdiff_restart_intel Checking test 057 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2484,14 +2414,14 @@ Checking test 057 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 = 435.798201 - 0: The maximum resident set size (KB) = 833620 + 0: The total amount of wall time = 439.285423 + 0: The maximum resident set size (KB) = 842336 Test 057 rap_sfcdiff_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/hrrr_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_intel Checking test 058 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2538,14 +2468,14 @@ Checking test 058 hrrr_control_intel 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 = 565.283440 - 0: The maximum resident set size (KB) = 949560 + 0: The total amount of wall time = 567.053423 + 0: The maximum resident set size (KB) = 954288 Test 058 hrrr_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/hrrr_control_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_qr_intel Checking test 059 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2592,14 +2522,14 @@ Checking test 059 hrrr_control_qr_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 = 561.042549 - 0: The maximum resident set size (KB) = 961216 + 0: The total amount of wall time = 564.202035 + 0: The maximum resident set size (KB) = 951940 Test 059 hrrr_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/hrrr_control_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_decomp_intel Checking test 060 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2646,14 +2576,14 @@ Checking test 060 hrrr_control_decomp_intel 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 = 593.909475 - 0: The maximum resident set size (KB) = 946460 + 0: The total amount of wall time = 594.548873 + 0: The maximum resident set size (KB) = 949816 Test 060 hrrr_control_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/hrrr_control_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_2threads_intel Checking test 061 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2700,42 +2630,42 @@ Checking test 061 hrrr_control_2threads_intel 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 = 525.805256 - 0: The maximum resident set size (KB) = 1003260 + 0: The total amount of wall time = 530.929784 + 0: The maximum resident set size (KB) = 1008172 Test 061 hrrr_control_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/hrrr_control_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_restart_intel Checking test 062 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 = 419.516541 - 0: The maximum resident set size (KB) = 834208 + 0: The total amount of wall time = 425.906584 + 0: The maximum resident set size (KB) = 833640 Test 062 hrrr_control_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/hrrr_control_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_restart_qr_intel Checking test 063 hrrr_control_restart_qr_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 = 421.541046 - 0: The maximum resident set size (KB) = 857812 + 0: The total amount of wall time = 422.504260 + 0: The maximum resident set size (KB) = 844860 Test 063 hrrr_control_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rrfs_v1beta_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_v1beta_intel Checking test 064 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2782,14 +2712,14 @@ Checking test 064 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 = 584.686135 - 0: The maximum resident set size (KB) = 951048 + 0: The total amount of wall time = 582.030714 + 0: The maximum resident set size (KB) = 955336 Test 064 rrfs_v1beta_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rrfs_v1nssl_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rrfs_v1nssl_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_v1nssl_intel Checking test 065 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2804,14 +2734,14 @@ Checking test 065 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 701.621916 - 0: The maximum resident set size (KB) = 638936 + 0: The total amount of wall time = 702.383656 + 0: The maximum resident set size (KB) = 633068 Test 065 rrfs_v1nssl_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_v1nssl_nohailnoccn_intel Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2826,14 +2756,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 692.326187 - 0: The maximum resident set size (KB) = 631240 + 0: The total amount of wall time = 686.735455 + 0: The maximum resident set size (KB) = 632776 Test 066 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 067 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2849,14 +2779,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_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 = 201.881300 - 0: The maximum resident set size (KB) = 903280 + 0: The total amount of wall time = 201.457479 + 0: The maximum resident set size (KB) = 914200 Test 067 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 068 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2872,14 +2802,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_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 = 190.914741 - 0: The maximum resident set size (KB) = 864156 + 0: The total amount of wall time = 190.602951 + 0: The maximum resident set size (KB) = 876236 Test 068 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2888,14 +2818,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 132.606550 - 0: The maximum resident set size (KB) = 871504 + 0: The total amount of wall time = 129.084012 + 0: The maximum resident set size (KB) = 875724 Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rrfs_conus13km_hrrr_warm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_conus13km_hrrr_warm_intel Checking test 070 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2911,14 +2841,14 @@ Checking test 070 rrfs_conus13km_hrrr_warm_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 = 182.234457 - 0: The maximum resident set size (KB) = 865956 + 0: The total amount of wall time = 188.623522 + 0: The maximum resident set size (KB) = 872216 Test 070 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 071 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2927,38 +2857,38 @@ Checking test 071 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 204.864547 - 0: The maximum resident set size (KB) = 908888 + 0: The total amount of wall time = 202.068961 + 0: The maximum resident set size (KB) = 903944 Test 071 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 072 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 114.899933 - 0: The maximum resident set size (KB) = 893356 + 0: The total amount of wall time = 118.378315 + 0: The maximum resident set size (KB) = 889940 Test 072 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 073 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 121.348093 - 0: The maximum resident set size (KB) = 912796 + 0: The total amount of wall time = 121.816938 + 0: The maximum resident set size (KB) = 919672 Test 073 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_csawmg_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_csawmg_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_csawmg_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_csawmg_intel Checking test 074 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2969,14 +2899,14 @@ Checking test 074 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 453.243343 - 0: The maximum resident set size (KB) = 666828 + 0: The total amount of wall time = 454.322850 + 0: The maximum resident set size (KB) = 674208 Test 074 control_csawmg_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_csawmgt_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_csawmgt_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_csawmgt_intel Checking test 075 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2987,14 +2917,14 @@ Checking test 075 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 446.607626 - 0: The maximum resident set size (KB) = 662072 + 0: The total amount of wall time = 452.893855 + 0: The maximum resident set size (KB) = 664348 Test 075 control_csawmgt_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_ras_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_ras_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_ras_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_ras_intel Checking test 076 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3005,26 +2935,26 @@ Checking test 076 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 247.640164 - 0: The maximum resident set size (KB) = 632192 + 0: The total amount of wall time = 251.148965 + 0: The maximum resident set size (KB) = 633116 Test 076 control_ras_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_wam_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_wam_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_wam_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_wam_intel Checking test 077 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 149.771401 - 0: The maximum resident set size (KB) = 486620 + 0: The total amount of wall time = 153.274155 + 0: The maximum resident set size (KB) = 486348 Test 077 control_wam_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_faster_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_p8_faster_intel Checking test 078 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3071,14 +3001,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 - 0: The total amount of wall time = 211.142972 - 0: The maximum resident set size (KB) = 1528616 + 0: The total amount of wall time = 219.791498 + 0: The maximum resident set size (KB) = 1538688 Test 078 control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/regional_control_faster_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/regional_control_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_control_faster_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_control_faster_intel Checking test 079 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3089,56 +3019,56 @@ Checking test 079 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 370.722790 - 0: The maximum resident set size (KB) = 783372 + 0: The total amount of wall time = 367.608659 + 0: The maximum resident set size (KB) = 780636 Test 079 regional_control_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1083.052783 - 0: The maximum resident set size (KB) = 937332 + 0: The total amount of wall time = 1091.310615 + 0: The maximum resident set size (KB) = 923628 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 081 rrfs_smoke_conus13km_hrrr_warm_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.593277 - 0: The maximum resident set size (KB) = 904724 + 0: The total amount of wall time = 633.010456 + 0: The maximum resident set size (KB) = 894380 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_conus13km_hrrr_warm_debug_intel Checking test 082 rrfs_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 969.522252 - 0: The maximum resident set size (KB) = 895536 + 0: The total amount of wall time = 966.316231 + 0: The maximum resident set size (KB) = 892772 Test 082 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_CubedSphereGrid_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_CubedSphereGrid_debug_intel Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3165,348 +3095,348 @@ Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 191.303299 - 0: The maximum resident set size (KB) = 733856 + 0: The total amount of wall time = 186.363913 + 0: The maximum resident set size (KB) = 729128 Test 083 control_CubedSphereGrid_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_wrtGauss_netcdf_parallel_debug_intel Checking test 084 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 190.395788 - 0: The maximum resident set size (KB) = 723832 + 0: The total amount of wall time = 187.356782 + 0: The maximum resident set size (KB) = 724496 Test 084 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_stochy_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_stochy_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_stochy_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_stochy_debug_intel Checking test 085 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 211.181517 - 0: The maximum resident set size (KB) = 737516 + 0: The total amount of wall time = 212.384665 + 0: The maximum resident set size (KB) = 734336 -Test 085 control_stochy_debug_intel PASS +Test 085 control_stochy_debug_intel PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_lndp_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_lndp_debug_intel Checking test 086 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 189.490196 - 0: The maximum resident set size (KB) = 736832 + 0: The total amount of wall time = 188.702908 + 0: The maximum resident set size (KB) = 729892 Test 086 control_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_csawmg_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_csawmg_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_csawmg_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_csawmg_debug_intel Checking test 087 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 301.074573 - 0: The maximum resident set size (KB) = 784916 + 0: The total amount of wall time = 304.467583 + 0: The maximum resident set size (KB) = 780724 Test 087 control_csawmg_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_csawmgt_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_csawmgt_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_csawmgt_debug_intel Checking test 088 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 299.026798 - 0: The maximum resident set size (KB) = 778624 + 0: The total amount of wall time = 300.688173 + 0: The maximum resident set size (KB) = 778036 Test 088 control_csawmgt_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_ras_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_ras_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_ras_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_ras_debug_intel Checking test 089 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 193.260225 - 0: The maximum resident set size (KB) = 744048 + 0: The total amount of wall time = 191.613831 + 0: The maximum resident set size (KB) = 743268 Test 089 control_ras_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_diag_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_diag_debug_intel Checking test 090 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.629636 - 0: The maximum resident set size (KB) = 784976 + 0: The total amount of wall time = 197.563822 + 0: The maximum resident set size (KB) = 788960 Test 090 control_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_debug_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_debug_p8_intel Checking test 091 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 217.020471 - 0: The maximum resident set size (KB) = 1559592 + 0: The total amount of wall time = 219.112185 + 0: The maximum resident set size (KB) = 1555456 Test 091 control_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/regional_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/regional_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_debug_intel Checking test 092 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1270.878246 - 0: The maximum resident set size (KB) = 803220 + 0: The total amount of wall time = 1265.725060 + 0: The maximum resident set size (KB) = 822940 Test 092 regional_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_control_debug_intel Checking test 093 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.338078 - 0: The maximum resident set size (KB) = 1115648 + 0: The total amount of wall time = 350.372640 + 0: The maximum resident set size (KB) = 1109744 Test 093 rap_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/hrrr_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_debug_intel Checking test 094 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 342.461245 - 0: The maximum resident set size (KB) = 1109872 + 0: The total amount of wall time = 340.562850 + 0: The maximum resident set size (KB) = 1107984 Test 094 hrrr_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_unified_drag_suite_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_unified_drag_suite_debug_intel Checking test 095 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.579764 - 0: The maximum resident set size (KB) = 1112112 + 0: The total amount of wall time = 350.456902 + 0: The maximum resident set size (KB) = 1113112 Test 095 rap_unified_drag_suite_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_diag_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_diag_debug_intel Checking test 096 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 371.187393 - 0: The maximum resident set size (KB) = 1190400 + 0: The total amount of wall time = 367.490429 + 0: The maximum resident set size (KB) = 1187352 Test 096 rap_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_cires_ugwp_debug_intel Checking test 097 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.341979 - 0: The maximum resident set size (KB) = 1110400 + 0: The total amount of wall time = 360.437426 + 0: The maximum resident set size (KB) = 1100416 Test 097 rap_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_unified_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_unified_ugwp_debug_intel Checking test 098 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 360.305987 - 0: The maximum resident set size (KB) = 1113684 + 0: The total amount of wall time = 357.097904 + 0: The maximum resident set size (KB) = 1105148 Test 098 rap_unified_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_lndp_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_lndp_debug_intel Checking test 099 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 356.758486 - 0: The maximum resident set size (KB) = 1105932 + 0: The total amount of wall time = 352.168697 + 0: The maximum resident set size (KB) = 1108448 Test 099 rap_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_progcld_thompson_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_progcld_thompson_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_progcld_thompson_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_progcld_thompson_debug_intel Checking test 100 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.871371 - 0: The maximum resident set size (KB) = 1110512 + 0: The total amount of wall time = 351.869027 + 0: The maximum resident set size (KB) = 1107436 Test 100 rap_progcld_thompson_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_noah_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_noah_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_noah_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_noah_debug_intel Checking test 101 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 341.133120 - 0: The maximum resident set size (KB) = 1110348 + 0: The total amount of wall time = 340.612150 + 0: The maximum resident set size (KB) = 1110300 Test 101 rap_noah_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_sfcdiff_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_sfcdiff_debug_intel Checking test 102 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.758905 - 0: The maximum resident set size (KB) = 1109456 + 0: The total amount of wall time = 350.834160 + 0: The maximum resident set size (KB) = 1107856 Test 102 rap_sfcdiff_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 577.271777 - 0: The maximum resident set size (KB) = 1108176 + 0: The total amount of wall time = 576.448159 + 0: The maximum resident set size (KB) = 1108352 Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rrfs_v1beta_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_v1beta_debug_intel Checking test 104 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 340.880424 - 0: The maximum resident set size (KB) = 1107156 + 0: The total amount of wall time = 343.635610 + 0: The maximum resident set size (KB) = 1102596 Test 104 rrfs_v1beta_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_clm_lake_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_clm_lake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_clm_lake_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_clm_lake_debug_intel Checking test 105 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 431.509426 - 0: The maximum resident set size (KB) = 1108112 + 0: The total amount of wall time = 430.471453 + 0: The maximum resident set size (KB) = 1107328 Test 105 rap_clm_lake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_flake_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_flake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_flake_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_flake_debug_intel Checking test 106 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.728367 - 0: The maximum resident set size (KB) = 1110984 + 0: The total amount of wall time = 348.177827 + 0: The maximum resident set size (KB) = 1112120 Test 106 rap_flake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_wam_debug_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_wam_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_wam_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_wam_debug_intel Checking test 107 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 355.576713 - 0: The maximum resident set size (KB) = 436660 + 0: The total amount of wall time = 356.521286 + 0: The maximum resident set size (KB) = 433128 Test 107 control_wam_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/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 @@ -3517,14 +3447,14 @@ Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 292.033976 - 0: The maximum resident set size (KB) = 989040 + 0: The total amount of wall time = 292.229424 + 0: The maximum resident set size (KB) = 984620 Test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_control_dyn32_phy32_intel Checking test 109 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3571,14 +3501,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 - 0: The total amount of wall time = 483.423070 - 0: The maximum resident set size (KB) = 845496 + 0: The total amount of wall time = 488.402017 + 0: The maximum resident set size (KB) = 836720 Test 109 rap_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/hrrr_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_dyn32_phy32_intel Checking test 110 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3625,14 +3555,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 - 0: The total amount of wall time = 252.598777 - 0: The maximum resident set size (KB) = 831844 + 0: The total amount of wall time = 255.417430 + 0: The maximum resident set size (KB) = 837216 Test 110 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_qr_dyn32_phy32_intel Checking test 111 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3679,14 +3609,14 @@ Checking test 111 hrrr_control_qr_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 = 247.705185 - 0: The maximum resident set size (KB) = 843136 + 0: The total amount of wall time = 252.847706 + 0: The maximum resident set size (KB) = 847196 Test 111 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_2threads_dyn32_phy32_intel Checking test 112 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3733,14 +3663,14 @@ Checking test 112 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 458.404044 - 0: The maximum resident set size (KB) = 885400 + 0: The total amount of wall time = 462.942898 + 0: The maximum resident set size (KB) = 880032 Test 112 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_2threads_dyn32_phy32_intel Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3787,14 +3717,14 @@ Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.415351 - 0: The maximum resident set size (KB) = 878280 + 0: The total amount of wall time = 233.353728 + 0: The maximum resident set size (KB) = 872812 Test 113 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_decomp_dyn32_phy32_intel Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3841,14 +3771,14 @@ Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 265.111043 - 0: The maximum resident set size (KB) = 817876 + 0: The total amount of wall time = 270.835530 + 0: The maximum resident set size (KB) = 834360 Test 114 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_restart_dyn32_phy32_intel Checking test 115 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3887,42 +3817,42 @@ Checking test 115 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 354.056534 - 0: The maximum resident set size (KB) = 803548 + 0: The total amount of wall time = 353.136309 + 0: The maximum resident set size (KB) = 799508 Test 115 rap_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_restart_dyn32_phy32_intel Checking test 116 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 130.282350 - 0: The maximum resident set size (KB) = 765256 + 0: The total amount of wall time = 129.484569 + 0: The maximum resident set size (KB) = 766948 Test 116 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 117 hrrr_control_restart_qr_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 = 131.577021 - 0: The maximum resident set size (KB) = 778732 + 0: The total amount of wall time = 130.806009 + 0: The maximum resident set size (KB) = 793468 Test 117 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_fast_phy32_intel Checking test 118 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3938,14 +3868,14 @@ Checking test 118 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 160.526706 - 0: The maximum resident set size (KB) = 814408 + 0: The total amount of wall time = 159.884116 + 0: The maximum resident set size (KB) = 812220 Test 118 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 119 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3955,44 +3885,44 @@ Checking test 119 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing atmf002.nc .........OK Comparing RESTART/20210512.170000.coupler.res .........OK Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 150.754836 - 0: The maximum resident set size (KB) = 814896 + 0: The total amount of wall time = 155.607229 + 0: The maximum resident set size (KB) = 815236 Test 119 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 120 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 93.558381 - 0: The maximum resident set size (KB) = 804844 + 0: The total amount of wall time = 100.190863 + 0: The maximum resident set size (KB) = 813436 Test 120 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 121 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 97.237899 - 0: The maximum resident set size (KB) = 821308 + 0: The total amount of wall time = 102.014642 + 0: The maximum resident set size (KB) = 819280 Test 121 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_control_dyn64_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn64_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_control_dyn64_phy32_intel Checking test 122 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4039,81 +3969,81 @@ Checking test 122 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 311.385965 - 0: The maximum resident set size (KB) = 865396 + 0: The total amount of wall time = 340.187100 + 0: The maximum resident set size (KB) = 876572 Test 122 rap_control_dyn64_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_control_debug_dyn32_phy32_intel Checking test 123 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 343.969176 - 0: The maximum resident set size (KB) = 994752 + 0: The total amount of wall time = 344.988078 + 0: The maximum resident set size (KB) = 997404 Test 123 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_debug_dyn32_phy32_intel Checking test 124 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 338.662438 - 0: The maximum resident set size (KB) = 992240 + 0: The total amount of wall time = 340.581878 + 0: The maximum resident set size (KB) = 997544 Test 124 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/rap_control_dyn64_phy32_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn64_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/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 = 351.334639 - 0: The maximum resident set size (KB) = 1021732 + 0: The total amount of wall time = 350.334248 + 0: The maximum resident set size (KB) = 1032484 Test 125 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/hafs_regional_atm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/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 = 322.517494 - 0: The maximum resident set size (KB) = 1224508 + 0: The total amount of wall time = 322.263671 + 0: The maximum resident set size (KB) = 1154024 Test 126 hafs_regional_atm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/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 = 384.267180 - 0: The maximum resident set size (KB) = 1586480 + 0: The total amount of wall time = 393.315742 + 0: The maximum resident set size (KB) = 1512372 Test 127 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_ocn_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/hafs_regional_atm_ocn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hafs_regional_atm_ocn_intel Checking test 128 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4122,14 +4052,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 = 514.086337 - 0: The maximum resident set size (KB) = 1291152 + 0: The total amount of wall time = 501.701737 + 0: The maximum resident set size (KB) = 1303112 Test 128 hafs_regional_atm_ocn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_wav_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/hafs_regional_atm_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_wav_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hafs_regional_atm_wav_intel Checking test 129 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4138,14 +4068,14 @@ 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 = 912.925686 - 0: The maximum resident set size (KB) = 1322432 + 0: The total amount of wall time = 917.311337 + 0: The maximum resident set size (KB) = 1333624 Test 129 hafs_regional_atm_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_ocn_wav_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/hafs_regional_atm_ocn_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_wav_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hafs_regional_atm_ocn_wav_intel Checking test 130 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4156,14 +4086,14 @@ Checking test 130 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1030.704923 - 0: The maximum resident set size (KB) = 1339940 + 0: The total amount of wall time = 1045.947807 + 0: The maximum resident set size (KB) = 1347940 Test 130 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/hafs_regional_docn_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/hafs_regional_docn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hafs_regional_docn_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hafs_regional_docn_intel Checking test 131 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4171,14 +4101,14 @@ Checking test 131 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 = 466.815401 - 0: The maximum resident set size (KB) = 1305836 + 0: The total amount of wall time = 467.674035 + 0: The maximum resident set size (KB) = 1301960 Test 131 hafs_regional_docn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/hafs_regional_docn_oisst_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/hafs_regional_docn_oisst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hafs_regional_docn_oisst_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hafs_regional_docn_oisst_intel Checking test 132 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4186,118 +4116,118 @@ Checking test 132 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 = 468.139968 - 0: The maximum resident set size (KB) = 1290972 + 0: The total amount of wall time = 461.947640 + 0: The maximum resident set size (KB) = 1291308 Test 132 hafs_regional_docn_oisst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/datm_cdeps_control_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_control_cfsr_intel Checking test 133 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 = 203.571236 - 0: The maximum resident set size (KB) = 969872 + 0: The total amount of wall time = 203.829688 + 0: The maximum resident set size (KB) = 969692 Test 133 datm_cdeps_control_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/datm_cdeps_restart_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_restart_cfsr_intel Checking test 134 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 118.035725 - 0: The maximum resident set size (KB) = 928080 + 0: The total amount of wall time = 123.029079 + 0: The maximum resident set size (KB) = 939316 Test 134 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_gefs_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/datm_cdeps_control_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_gefs_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_control_gefs_intel Checking test 135 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 200.047050 - 0: The maximum resident set size (KB) = 855956 + 0: The total amount of wall time = 198.597264 + 0: The maximum resident set size (KB) = 854116 Test 135 datm_cdeps_control_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_iau_gefs_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/datm_cdeps_iau_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_iau_gefs_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_iau_gefs_intel Checking test 136 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 200.641279 - 0: The maximum resident set size (KB) = 855372 + 0: The total amount of wall time = 202.067405 + 0: The maximum resident set size (KB) = 854084 Test 136 datm_cdeps_iau_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_stochy_gefs_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/datm_cdeps_stochy_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_stochy_gefs_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_stochy_gefs_intel Checking test 137 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 202.724352 - 0: The maximum resident set size (KB) = 855436 + 0: The total amount of wall time = 203.164946 + 0: The maximum resident set size (KB) = 855404 Test 137 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/datm_cdeps_ciceC_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_ciceC_cfsr_intel Checking test 138 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 = 204.081332 - 0: The maximum resident set size (KB) = 960100 + 0: The total amount of wall time = 204.799547 + 0: The maximum resident set size (KB) = 970480 Test 138 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_bulk_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/datm_cdeps_bulk_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_bulk_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_bulk_cfsr_intel Checking test 139 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.345866 - 0: The maximum resident set size (KB) = 977348 + 0: The total amount of wall time = 205.535322 + 0: The maximum resident set size (KB) = 955904 Test 139 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_bulk_gefs_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/datm_cdeps_bulk_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_bulk_gefs_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_bulk_gefs_intel Checking test 140 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 = 183.776297 - 0: The maximum resident set size (KB) = 858348 + 0: The total amount of wall time = 198.450336 + 0: The maximum resident set size (KB) = 859948 Test 140 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_mx025_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/datm_cdeps_mx025_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_mx025_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_mx025_cfsr_intel Checking test 141 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4306,14 +4236,14 @@ Checking test 141 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 = 541.156966 - 0: The maximum resident set size (KB) = 761908 + 0: The total amount of wall time = 543.672413 + 0: The maximum resident set size (KB) = 763188 Test 141 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_mx025_gefs_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/datm_cdeps_mx025_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_mx025_gefs_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_mx025_gefs_intel Checking test 142 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4322,77 +4252,77 @@ Checking test 142 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 = 545.609985 - 0: The maximum resident set size (KB) = 735952 + 0: The total amount of wall time = 534.769321 + 0: The maximum resident set size (KB) = 736032 Test 142 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_multiple_files_cfsr_intel Checking test 143 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 = 200.509687 - 0: The maximum resident set size (KB) = 967380 + 0: The total amount of wall time = 202.331530 + 0: The maximum resident set size (KB) = 959076 Test 143 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_3072x1536_cfsr_intel Checking test 144 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 = 309.228331 - 0: The maximum resident set size (KB) = 2240908 + 0: The total amount of wall time = 273.253030 + 0: The maximum resident set size (KB) = 2188700 Test 144 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_gfs_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/datm_cdeps_gfs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_gfs_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_gfs_intel Checking test 145 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 = 283.258436 - 0: The maximum resident set size (KB) = 2247416 + 0: The total amount of wall time = 306.985821 + 0: The maximum resident set size (KB) = 2244820 Test 145 datm_cdeps_gfs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_debug_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/datm_cdeps_debug_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_debug_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_debug_cfsr_intel Checking test 146 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.152505 - 0: The maximum resident set size (KB) = 914720 + 0: The total amount of wall time = 463.293345 + 0: The maximum resident set size (KB) = 911560 Test 146 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/datm_cdeps_control_cfsr_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_control_cfsr_faster_intel Checking test 147 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 = 201.151619 - 0: The maximum resident set size (KB) = 961228 + 0: The total amount of wall time = 201.884016 + 0: The maximum resident set size (KB) = 959800 Test 147 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/datm_cdeps_lnd_gswp3_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_lnd_gswp3_intel Checking test 148 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 @@ -4401,14 +4331,14 @@ Checking test 148 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 = 9.928888 - 0: The maximum resident set size (KB) = 240756 + 0: The total amount of wall time = 12.167908 + 0: The maximum resident set size (KB) = 250456 Test 148 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_lnd_gswp3_rst_intel Checking test 149 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4417,14 +4347,14 @@ Checking test 149 datm_cdeps_lnd_gswp3_rst_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 = 18.113221 - 0: The maximum resident set size (KB) = 237700 + 0: The total amount of wall time = 18.348583 + 0: The maximum resident set size (KB) = 245572 Test 149 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_p8_atmlnd_sbs_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_p8_atmlnd_sbs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_atmlnd_sbs_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_p8_atmlnd_sbs_intel Checking test 150 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4509,14 +4439,14 @@ Checking test 150 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 = 278.966532 - 0: The maximum resident set size (KB) = 1595812 + 0: The total amount of wall time = 275.723773 + 0: The maximum resident set size (KB) = 1593456 Test 150 control_p8_atmlnd_sbs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/atmwav_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/atmwav_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/atmwav_control_noaero_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/atmwav_control_noaero_p8_intel Checking test 151 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4559,14 +4489,14 @@ Checking test 151 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 126.656707 - 0: The maximum resident set size (KB) = 1573824 + 0: The total amount of wall time = 133.014384 + 0: The maximum resident set size (KB) = 1573828 Test 151 atmwav_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/control_atmwav_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/control_atmwav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_atmwav_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_atmwav_intel Checking test 152 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4610,14 +4540,14 @@ Checking test 152 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 = 119.546467 - 0: The maximum resident set size (KB) = 596284 + 0: The total amount of wall time = 119.034749 + 0: The maximum resident set size (KB) = 590608 Test 152 control_atmwav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/atmaero_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/atmaero_control_p8_intel Checking test 153 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4661,14 +4591,14 @@ Checking test 153 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 = 304.751420 - 0: The maximum resident set size (KB) = 1632928 + 0: The total amount of wall time = 302.633562 + 0: The maximum resident set size (KB) = 1633652 Test 153 atmaero_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_rad_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/atmaero_control_p8_rad_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/atmaero_control_p8_rad_intel Checking test 154 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4712,14 +4642,14 @@ Checking test 154 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 = 383.118300 - 0: The maximum resident set size (KB) = 1667616 + 0: The total amount of wall time = 375.515952 + 0: The maximum resident set size (KB) = 1667316 Test 154 atmaero_control_p8_rad_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295244/atmaero_control_p8_rad_micro_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_micro_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/atmaero_control_p8_rad_micro_intel Checking test 155 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4763,8 +4693,87 @@ Checking test 155 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 = 381.163268 - 0: The maximum resident set size (KB) = 1682088 + 0: The total amount of wall time = 384.120376 + 0: The maximum resident set size (KB) = 1668252 Test 155 atmaero_control_p8_rad_micro_intel PASS +FAILED TESTS: +compile_s2s_aoflux_intel failed in run_compile + +REGRESSION TEST FAILED +Fri Jul 14 16:50:02 UTC 2023 +Elapsed time: 08h:05m:42s. Have a nice day! +Fri Jul 14 17:44:50 UTC 2023 +Start Regression test + +Testing UFSWM Hash: 468540cd7b37378fedee39677f27d54273889b51 +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) + 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + 5840cd1931e2e32b9dfded0c19049d0f1ec3d04c ../CICE-interface/CICE (CICE6.0.0-440-g5840cd1) + 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1402-g9923d6d) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) + b6901a95012bfe2fb65fc2bd86a67749f7d80441 ../FV3 (remotes/origin/hr2_land1) + b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) + 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) + fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) + 8dbe01268bd76a0c1860200d2fc152aa600e149f ../NOAHMP-interface/noahmp (v3.7.1-302-g8dbe012) + c4b116886b5ef9af5fb4942d7161074df3402732 ../WW3 (6.07.1-325-gc4b11688) + 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) +Compile atmaero_intel elapsed time 1842 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_micro_intel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_246593/atmaero_control_p8_rad_micro_intel +Checking test 001 atmaero_control_p8_rad_micro_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 374.619270 + 0: The maximum resident set size (KB) = 1678808 + +Test 001 atmaero_control_p8_rad_micro_intel PASS + + +REGRESSION TEST WAS SUCCESSFUL +Fri Jul 14 18:28:19 UTC 2023 +Elapsed time: 00h:43m:30s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 4e7cdd6377..f65f4ea6cc 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,60 +1,59 @@ -Sun Jul 9 17:58:41 CDT 2023 +Fri Jul 14 15:07:23 CDT 2023 Start Regression test -Testing UFSWM Hash: 5ebc77415306874437f65b2b4a7d885cc1aef7ba +Testing UFSWM Hash: 2def3318b9563512b40a61826e6c0df8be6aef60 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 5840cd1931e2e32b9dfded0c19049d0f1ec3d04c ../CICE-interface/CICE (CICE6.0.0-440-g5840cd1) 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2295-g9923d6d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - b8ee3bd92ea9e47707c428cc666b47456fd20813 ../FV3 (remotes/origin/rrfs-32bit-physics) + b6901a95012bfe2fb65fc2bd86a67749f7d80441 ../FV3 (remotes/origin/hr2_land1) b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) - e1260f1ee711f66a1141010d13511a69c0f8637b ../NOAHMP-interface/noahmp (v3.7.1-292-ge1260f1) + 8dbe01268bd76a0c1860200d2fc152aa600e149f ../NOAHMP-interface/noahmp (v3.7.1-302-g8dbe012) c4b116886b5ef9af5fb4942d7161074df3402732 ../WW3 (6.07.1-325-gc4b11688) 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atmaero_intel elapsed time 610 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 216 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 668 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 614 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 238 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 697 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 679 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 632 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 648 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 622 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 636 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 117 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 207 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 205 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 82 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 683 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 252 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 -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 691 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 -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 -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 750 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 650 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 174 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 631 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 651 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 728 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 725 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 811 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 260 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 836 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 819 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 256 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 780 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 259 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 1064 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 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 695 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 237 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 665 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 681 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 370 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1037 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 757 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 713 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 657 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 740 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 933 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 126 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 215 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 257 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 697 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 259 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 715 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 721 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 898 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 737 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 234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_intel elapsed time 1003 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 1050 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 1059 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1078 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 311 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 1094 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 1078 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 268 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 1070 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 293 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 1440 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 230 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 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -119,14 +118,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 303.718239 - 0: The maximum resident set size (KB) = 3141716 + 0: The total amount of wall time = 308.712244 + 0: The maximum resident set size (KB) = 3146616 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_gfsv17_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_control_gfsv17_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_gfsv17_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -190,14 +189,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 = 220.809740 - 0: The maximum resident set size (KB) = 1699900 + 0: The total amount of wall time = 328.149180 + 0: The maximum resident set size (KB) = 1694692 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_control_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -262,14 +261,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.352403 - 0: The maximum resident set size (KB) = 3175756 + 0: The total amount of wall time = 354.738146 + 0: The maximum resident set size (KB) = 3176340 Test 003 cpld_control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_restart_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -322,14 +321,14 @@ Checking test 004 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 = 204.169527 - 0: The maximum resident set size (KB) = 3051120 + 0: The total amount of wall time = 204.654435 + 0: The maximum resident set size (KB) = 3046372 Test 004 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_control_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -394,14 +393,14 @@ Checking test 005 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 = 344.138565 - 0: The maximum resident set size (KB) = 3189744 + 0: The total amount of wall time = 351.553424 + 0: The maximum resident set size (KB) = 3188864 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -454,14 +453,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 208.330364 - 0: The maximum resident set size (KB) = 2979956 + 0: The total amount of wall time = 206.999522 + 0: The maximum resident set size (KB) = 3055804 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_2threads_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -514,14 +513,14 @@ Checking test 007 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 = 406.714297 - 0: The maximum resident set size (KB) = 3519952 + 0: The total amount of wall time = 403.198656 + 0: The maximum resident set size (KB) = 3516068 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_decomp_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -574,14 +573,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 339.145115 - 0: The maximum resident set size (KB) = 3168240 + 0: The total amount of wall time = 355.201504 + 0: The maximum resident set size (KB) = 3170508 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_mpi_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -634,14 +633,14 @@ Checking test 009 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 = 282.821363 - 0: The maximum resident set size (KB) = 3032124 + 0: The total amount of wall time = 282.125806 + 0: The maximum resident set size (KB) = 3030580 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_ciceC_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_ciceC_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -706,14 +705,14 @@ Checking test 010 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 = 343.076971 - 0: The maximum resident set size (KB) = 3175296 + 0: The total amount of wall time = 358.183270 + 0: The maximum resident set size (KB) = 3176168 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_control_c192_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c192_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -766,14 +765,14 @@ Checking test 011 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 = 832.340750 - 0: The maximum resident set size (KB) = 3255228 + 0: The total amount of wall time = 645.462926 + 0: The maximum resident set size (KB) = 3259380 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c192_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -826,14 +825,14 @@ Checking test 012 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 = 427.594764 - 0: The maximum resident set size (KB) = 3161096 + 0: The total amount of wall time = 432.726936 + 0: The maximum resident set size (KB) = 3151824 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_bmark_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_bmark_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -881,14 +880,14 @@ Checking test 013 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 = 886.809268 - 0: The maximum resident set size (KB) = 4070256 + 0: The total amount of wall time = 875.321319 + 0: The maximum resident set size (KB) = 4081176 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_bmark_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -936,14 +935,14 @@ Checking test 014 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 = 540.190761 - 0: The maximum resident set size (KB) = 3961384 + 0: The total amount of wall time = 540.396288 + 0: The maximum resident set size (KB) = 3971064 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_control_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1007,14 +1006,14 @@ Checking test 015 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 = 257.216004 - 0: The maximum resident set size (KB) = 1725812 + 0: The total amount of wall time = 258.644310 + 0: The maximum resident set size (KB) = 1731160 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c96_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1076,14 +1075,14 @@ Checking test 016 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 = 259.705886 - 0: The maximum resident set size (KB) = 1758988 + 0: The total amount of wall time = 261.538353 + 0: The maximum resident set size (KB) = 1756500 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_debug_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_debug_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1136,14 +1135,14 @@ Checking test 017 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 = 546.447440 - 0: The maximum resident set size (KB) = 3243092 + 0: The total amount of wall time = 824.333613 + 0: The maximum resident set size (KB) = 3241784 Test 017 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_debug_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_debug_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1195,14 +1194,14 @@ Checking test 018 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 = 376.019836 - 0: The maximum resident set size (KB) = 1701140 + 0: The total amount of wall time = 669.532872 + 0: The maximum resident set size (KB) = 1738472 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1264,14 +1263,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 269.056308 - 0: The maximum resident set size (KB) = 1764920 + 0: The total amount of wall time = 268.120737 + 0: The maximum resident set size (KB) = 1769348 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_control_c48_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c48_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1321,14 +1320,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 495.592336 - 0: The maximum resident set size (KB) = 2803976 + 0: The total amount of wall time = 503.980052 + 0: The maximum resident set size (KB) = 2801536 Test 020 cpld_control_c48_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_control_p8_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1393,14 +1392,14 @@ Checking test 021 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 = 319.232919 - 0: The maximum resident set size (KB) = 3115584 + 0: The total amount of wall time = 328.530394 + 0: The maximum resident set size (KB) = 3136380 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_control_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1464,14 +1463,14 @@ Checking test 022 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 = 1198.906660 - 0: The maximum resident set size (KB) = 1761444 + 0: The total amount of wall time = 1203.976028 + 0: The maximum resident set size (KB) = 1745424 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_restart_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1523,14 +1522,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 580.666146 - 0: The maximum resident set size (KB) = 1033812 + 0: The total amount of wall time = 600.842073 + 0: The maximum resident set size (KB) = 1032428 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_mpi_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1594,14 +1593,14 @@ Checking test 024 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 = 1052.486895 - 0: The maximum resident set size (KB) = 1662724 + 0: The total amount of wall time = 1056.231329 + 0: The maximum resident set size (KB) = 1659440 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/cpld_debug_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1653,14 +1652,14 @@ Checking test 025 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 = 1400.999173 - 0: The maximum resident set size (KB) = 1716152 + 0: The total amount of wall time = 1592.073413 + 0: The maximum resident set size (KB) = 1712104 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_flake_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_flake_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_flake_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1671,14 +1670,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.717255 - 0: The maximum resident set size (KB) = 681076 + 0: The total amount of wall time = 199.884277 + 0: The maximum resident set size (KB) = 681292 Test 026 control_flake_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_CubedSphereGrid_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1705,28 +1704,28 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.753425 - 0: The maximum resident set size (KB) = 630192 + 0: The total amount of wall time = 144.194794 + 0: The maximum resident set size (KB) = 633448 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_CubedSphereGrid_parallel_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_CubedSphereGrid_parallel_intel Checking test 028 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 - 0: The total amount of wall time = 128.582673 - 0: The maximum resident set size (KB) = 625628 + 0: The total amount of wall time = 140.135845 + 0: The maximum resident set size (KB) = 632188 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_latlon_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_latlon_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_latlon_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1737,32 +1736,32 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.944634 - 0: The maximum resident set size (KB) = 632980 + 0: The total amount of wall time = 133.951007 + 0: The maximum resident set size (KB) = 633168 Test 029 control_latlon_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.570584 - 0: The maximum resident set size (KB) = 630932 + 0: The total amount of wall time = 140.774873 + 0: The maximum resident set size (KB) = 631336 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_c48_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c48_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1801,14 +1800,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 345.691734 -0: The maximum resident set size (KB) = 824908 +0: The total amount of wall time = 345.737186 +0: The maximum resident set size (KB) = 809724 Test 031 control_c48_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_c192_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_c192_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c192_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1819,14 +1818,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 527.511684 - 0: The maximum resident set size (KB) = 766360 + 0: The total amount of wall time = 523.503905 + 0: The maximum resident set size (KB) = 768816 Test 032 control_c192_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_c384_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_c384_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c384_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1837,14 +1836,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 577.804738 - 0: The maximum resident set size (KB) = 1230056 + 0: The total amount of wall time = 580.053357 + 0: The maximum resident set size (KB) = 1232120 Test 033 control_c384_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_c384gdas_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_c384gdas_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c384gdas_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1887,14 +1886,14 @@ Checking test 034 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 = 505.258259 - 0: The maximum resident set size (KB) = 1344328 + 0: The total amount of wall time = 510.969807 + 0: The maximum resident set size (KB) = 1342080 Test 034 control_c384gdas_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_stochy_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1905,28 +1904,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.066368 - 0: The maximum resident set size (KB) = 600068 + 0: The total amount of wall time = 88.044061 + 0: The maximum resident set size (KB) = 635836 Test 035 control_stochy_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_stochy_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.967892 - 0: The maximum resident set size (KB) = 483028 + 0: The total amount of wall time = 49.145383 + 0: The maximum resident set size (KB) = 486892 Test 036 control_stochy_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_lndp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_lndp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1937,14 +1936,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.247953 - 0: The maximum resident set size (KB) = 634468 + 0: The total amount of wall time = 81.970678 + 0: The maximum resident set size (KB) = 634112 Test 037 control_lndp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_iovr4_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_iovr4_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_iovr4_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1959,14 +1958,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.465953 - 0: The maximum resident set size (KB) = 630712 + 0: The total amount of wall time = 142.844208 + 0: The maximum resident set size (KB) = 627052 Test 038 control_iovr4_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_iovr5_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_iovr5_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_iovr5_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1981,14 +1980,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.048166 - 0: The maximum resident set size (KB) = 630336 + 0: The total amount of wall time = 142.535880 + 0: The maximum resident set size (KB) = 627012 Test 039 control_iovr5_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2035,14 +2034,14 @@ Checking test 040 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.425214 - 0: The maximum resident set size (KB) = 1566668 + 0: The total amount of wall time = 169.120127 + 0: The maximum resident set size (KB) = 1602524 Test 040 control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_restart_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2081,14 +2080,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 - 0: The total amount of wall time = 88.674397 - 0: The maximum resident set size (KB) = 877936 + 0: The total amount of wall time = 87.663424 + 0: The maximum resident set size (KB) = 881976 Test 041 control_restart_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2135,14 +2134,14 @@ Checking test 042 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 167.709219 - 0: The maximum resident set size (KB) = 1611156 + 0: The total amount of wall time = 170.936163 + 0: The maximum resident set size (KB) = 1609044 Test 042 control_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_restart_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2181,14 +2180,14 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 93.197775 - 0: The maximum resident set size (KB) = 863248 + 0: The total amount of wall time = 91.653738 + 0: The maximum resident set size (KB) = 866520 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_decomp_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2231,14 +2230,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 - 0: The total amount of wall time = 174.672791 - 0: The maximum resident set size (KB) = 1592892 + 0: The total amount of wall time = 174.449100 + 0: The maximum resident set size (KB) = 1599940 Test 044 control_decomp_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_2threads_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2281,14 +2280,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 - 0: The total amount of wall time = 174.818947 - 0: The maximum resident set size (KB) = 1691784 + 0: The total amount of wall time = 174.082132 + 0: The maximum resident set size (KB) = 1689756 Test 045 control_2threads_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_p8_lndp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_lndp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2307,14 +2306,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 307.123153 - 0: The maximum resident set size (KB) = 1600280 + 0: The total amount of wall time = 309.886927 + 0: The maximum resident set size (KB) = 1613804 Test 046 control_p8_lndp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_rrtmgp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_p8_rrtmgp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_rrtmgp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2361,14 +2360,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 - 0: The total amount of wall time = 225.231656 - 0: The maximum resident set size (KB) = 1680936 + 0: The total amount of wall time = 227.192458 + 0: The maximum resident set size (KB) = 1670484 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_mynn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_p8_mynn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_mynn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2415,14 +2414,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 - 0: The total amount of wall time = 169.158722 - 0: The maximum resident set size (KB) = 1614292 + 0: The total amount of wall time = 168.945561 + 0: The maximum resident set size (KB) = 1616456 Test 048 control_p8_mynn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/merra2_thompson_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/merra2_thompson_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/merra2_thompson_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2469,14 +2468,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 - 0: The total amount of wall time = 187.215757 - 0: The maximum resident set size (KB) = 1612972 + 0: The total amount of wall time = 188.206247 + 0: The maximum resident set size (KB) = 1611560 Test 049 merra2_thompson_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/regional_control_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2487,28 +2486,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 289.871993 - 0: The maximum resident set size (KB) = 871444 + 0: The total amount of wall time = 292.041994 + 0: The maximum resident set size (KB) = 869800 Test 050 regional_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/regional_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/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 - 0: The total amount of wall time = 147.361844 - 0: The maximum resident set size (KB) = 863384 + 0: The total amount of wall time = 148.566406 + 0: The maximum resident set size (KB) = 862832 Test 051 regional_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/regional_control_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2519,28 +2518,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 290.181688 - 0: The maximum resident set size (KB) = 871220 + 0: The total amount of wall time = 287.893052 + 0: The maximum resident set size (KB) = 869360 Test 052 regional_control_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/regional_restart_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_restart_qr_intel Checking test 053 regional_restart_qr_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 = 148.000414 - 0: The maximum resident set size (KB) = 864572 + 0: The total amount of wall time = 148.200152 + 0: The maximum resident set size (KB) = 868124 Test 053 regional_restart_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/regional_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2551,14 +2550,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 308.003460 - 0: The maximum resident set size (KB) = 863792 + 0: The total amount of wall time = 306.203068 + 0: The maximum resident set size (KB) = 859636 Test 054 regional_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/regional_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2569,14 +2568,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 198.333849 - 0: The maximum resident set size (KB) = 849388 + 0: The total amount of wall time = 202.436828 + 0: The maximum resident set size (KB) = 842296 Test 055 regional_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_noquilt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/regional_noquilt_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_noquilt_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2584,28 +2583,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 - 0: The total amount of wall time = 287.015667 - 0: The maximum resident set size (KB) = 859084 + 0: The total amount of wall time = 288.111236 + 0: The maximum resident set size (KB) = 861684 Test 056 regional_noquilt_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/regional_netcdf_parallel_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_netcdf_parallel_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc .........OK + Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 287.909203 - 0: The maximum resident set size (KB) = 864620 + 0: The total amount of wall time = 283.862408 + 0: The maximum resident set size (KB) = 864652 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/regional_2dwrtdecomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2616,14 +2615,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 290.290067 - 0: The maximum resident set size (KB) = 873732 + 0: The total amount of wall time = 288.711352 + 0: The maximum resident set size (KB) = 868624 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/fv3_regional_wofs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/regional_wofs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/fv3_regional_wofs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2634,14 +2633,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 368.286660 - 0: The maximum resident set size (KB) = 626584 + 0: The total amount of wall time = 366.549043 + 0: The maximum resident set size (KB) = 628588 Test 059 regional_wofs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_control_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2688,14 +2687,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 447.455054 - 0: The maximum resident set size (KB) = 1071016 + 0: The total amount of wall time = 446.052866 + 0: The maximum resident set size (KB) = 1058416 Test 060 rap_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/regional_spp_sppt_shum_skeb_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2706,14 +2705,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 261.248504 - 0: The maximum resident set size (KB) = 1186104 + 0: The total amount of wall time = 347.147109 + 0: The maximum resident set size (KB) = 1181864 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2760,14 +2759,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 465.961693 - 0: The maximum resident set size (KB) = 1007240 + 0: The total amount of wall time = 470.569915 + 0: The maximum resident set size (KB) = 1007504 Test 062 rap_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2814,14 +2813,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 455.715383 - 0: The maximum resident set size (KB) = 1138932 + 0: The total amount of wall time = 451.264490 + 0: The maximum resident set size (KB) = 1143864 Test 063 rap_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2860,14 +2859,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.794762 - 0: The maximum resident set size (KB) = 922076 + 0: The total amount of wall time = 226.479317 + 0: The maximum resident set size (KB) = 964616 Test 064 rap_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_sfcdiff_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2914,14 +2913,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.343950 - 0: The maximum resident set size (KB) = 1068572 + 0: The total amount of wall time = 445.025823 + 0: The maximum resident set size (KB) = 1059496 Test 065 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_sfcdiff_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2968,14 +2967,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 469.688615 - 0: The maximum resident set size (KB) = 1009260 + 0: The total amount of wall time = 469.993687 + 0: The maximum resident set size (KB) = 998056 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_sfcdiff_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3014,14 +3013,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 331.110722 - 0: The maximum resident set size (KB) = 989684 + 0: The total amount of wall time = 335.015635 + 0: The maximum resident set size (KB) = 986208 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hrrr_control_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3037,10 +3036,10 @@ Checking test 068 hrrr_control_intel results .... Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK @@ -3049,19 +3048,33 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......ERROR + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 431.695698 + 0: The maximum resident set size (KB) = 1050992 + +Test 068 hrrr_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hrrr_control_qr_intel + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_qr_intel Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3096,12 +3109,26 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......ERROR + Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hrrr_control_decomp_intel + 0: The total amount of wall time = 430.120148 + 0: The maximum resident set size (KB) = 1063468 + +Test 069 hrrr_control_qr_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3117,10 +3144,10 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK @@ -3129,19 +3156,33 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......ERROR + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 450.385229 + 0: The maximum resident set size (KB) = 1002872 + +Test 070 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hrrr_control_2threads_intel + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3157,10 +3198,10 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK @@ -3169,19 +3210,61 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......ERROR + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 362.585345 + 0: The maximum resident set size (KB) = 1077576 + +Test 071 hrrr_control_2threads_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_restart_intel +Checking test 072 hrrr_control_restart_intel results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 320.805527 + 0: The maximum resident set size (KB) = 984460 + +Test 072 hrrr_control_restart_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_restart_qr_intel +Checking test 073 hrrr_control_restart_qr_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 = 325.831302 + 0: The maximum resident set size (KB) = 996612 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rrfs_v1beta_intel +Test 073 hrrr_control_restart_qr_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3228,14 +3311,14 @@ Checking test 074 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 = 437.159198 - 0: The maximum resident set size (KB) = 1069012 + 0: The total amount of wall time = 439.602089 + 0: The maximum resident set size (KB) = 1057440 Test 074 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_v1nssl_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rrfs_v1nssl_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3250,14 +3333,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 521.860233 - 0: The maximum resident set size (KB) = 694604 + 0: The total amount of wall time = 524.027804 + 0: The maximum resident set size (KB) = 696424 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3272,14 +3355,14 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 510.403683 - 0: The maximum resident set size (KB) = 760420 + 0: The total amount of wall time = 512.052319 + 0: The maximum resident set size (KB) = 758808 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 077 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3295,14 +3378,14 @@ Checking test 077 rrfs_smoke_conus13km_hrrr_warm_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 = 151.493228 - 0: The maximum resident set size (KB) = 1036172 + 0: The total amount of wall time = 148.723996 + 0: The maximum resident set size (KB) = 1038160 Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3318,14 +3401,14 @@ Checking test 078 rrfs_smoke_conus13km_hrrr_warm_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 = 146.717041 - 0: The maximum resident set size (KB) = 980976 + 0: The total amount of wall time = 144.724705 + 0: The maximum resident set size (KB) = 974764 Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3334,14 +3417,14 @@ Checking test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 99.405372 - 0: The maximum resident set size (KB) = 950068 + 0: The total amount of wall time = 97.533978 + 0: The maximum resident set size (KB) = 947612 Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rrfs_conus13km_hrrr_warm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_conus13km_hrrr_warm_intel Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3357,14 +3440,14 @@ Checking test 080 rrfs_conus13km_hrrr_warm_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 = 133.161363 - 0: The maximum resident set size (KB) = 992792 + 0: The total amount of wall time = 131.242005 + 0: The maximum resident set size (KB) = 991376 Test 080 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3373,38 +3456,38 @@ Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 150.759060 - 0: The maximum resident set size (KB) = 1037460 + 0: The total amount of wall time = 148.332834 + 0: The maximum resident set size (KB) = 1036044 Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 86.455766 - 0: The maximum resident set size (KB) = 981856 + 0: The total amount of wall time = 82.589406 + 0: The maximum resident set size (KB) = 1024636 Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 86.987356 - 0: The maximum resident set size (KB) = 1014288 + 0: The total amount of wall time = 85.785630 + 0: The maximum resident set size (KB) = 1011004 Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_csawmg_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_csawmg_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmg_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_csawmg_intel Checking test 084 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3415,14 +3498,14 @@ Checking test 084 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 333.679997 - 0: The maximum resident set size (KB) = 720080 + 0: The total amount of wall time = 348.222740 + 0: The maximum resident set size (KB) = 726916 Test 084 control_csawmg_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_csawmgt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_csawmgt_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_csawmgt_intel Checking test 085 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3433,14 +3516,14 @@ Checking test 085 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 330.670469 - 0: The maximum resident set size (KB) = 719308 + 0: The total amount of wall time = 346.086848 + 0: The maximum resident set size (KB) = 726108 Test 085 control_csawmgt_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_ras_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_ras_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_ras_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_ras_intel Checking test 086 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3451,26 +3534,26 @@ Checking test 086 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 180.965205 - 0: The maximum resident set size (KB) = 714428 + 0: The total amount of wall time = 184.939023 + 0: The maximum resident set size (KB) = 727132 Test 086 control_ras_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_wam_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_wam_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wam_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_wam_intel Checking test 087 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.307550 - 0: The maximum resident set size (KB) = 639068 + 0: The total amount of wall time = 111.590392 + 0: The maximum resident set size (KB) = 645008 Test 087 control_wam_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_p8_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_p8_faster_intel Checking test 088 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3517,14 +3600,14 @@ Checking test 088 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.179601 - 0: The maximum resident set size (KB) = 1602072 + 0: The total amount of wall time = 155.105991 + 0: The maximum resident set size (KB) = 1601148 Test 088 control_p8_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_control_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/regional_control_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_control_faster_intel Checking test 089 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3535,56 +3618,56 @@ Checking test 089 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 264.962515 - 0: The maximum resident set size (KB) = 864152 + 0: The total amount of wall time = 263.502812 + 0: The maximum resident set size (KB) = 867176 Test 089 regional_control_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 842.282550 - 0: The maximum resident set size (KB) = 1019156 + 0: The total amount of wall time = 849.326095 + 0: The maximum resident set size (KB) = 1061148 Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 091 rrfs_smoke_conus13km_hrrr_warm_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 = 494.866162 - 0: The maximum resident set size (KB) = 982056 + 0: The total amount of wall time = 730.293855 + 0: The maximum resident set size (KB) = 978184 Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_conus13km_hrrr_warm_debug_intel Checking test 092 rrfs_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 763.423443 - 0: The maximum resident set size (KB) = 1021648 + 0: The total amount of wall time = 776.203255 + 0: The maximum resident set size (KB) = 1018196 Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_CubedSphereGrid_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_CubedSphereGrid_debug_intel Checking test 093 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3611,348 +3694,348 @@ Checking test 093 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 147.592245 - 0: The maximum resident set size (KB) = 795764 + 0: The total amount of wall time = 148.616052 + 0: The maximum resident set size (KB) = 790588 Test 093 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_wrtGauss_netcdf_parallel_debug_intel Checking test 094 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 146.305532 - 0: The maximum resident set size (KB) = 800280 + 0: The total amount of wall time = 153.012119 + 0: The maximum resident set size (KB) = 790792 Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_stochy_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_stochy_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_stochy_debug_intel Checking test 095 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 = 172.586189 - 0: The maximum resident set size (KB) = 804132 + 0: The total amount of wall time = 168.611632 + 0: The maximum resident set size (KB) = 795656 Test 095 control_stochy_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_lndp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_lndp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_lndp_debug_intel Checking test 096 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 = 154.414274 - 0: The maximum resident set size (KB) = 800844 + 0: The total amount of wall time = 149.336561 + 0: The maximum resident set size (KB) = 795616 Test 096 control_lndp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_csawmg_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_csawmg_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmg_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_csawmg_debug_intel Checking test 097 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.115130 - 0: The maximum resident set size (KB) = 837244 + 0: The total amount of wall time = 235.391333 + 0: The maximum resident set size (KB) = 844400 Test 097 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_csawmgt_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_csawmgt_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_csawmgt_debug_intel Checking test 098 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.043581 - 0: The maximum resident set size (KB) = 842648 + 0: The total amount of wall time = 227.213852 + 0: The maximum resident set size (KB) = 845680 Test 098 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_ras_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_ras_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_ras_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_ras_debug_intel Checking test 099 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.909272 - 0: The maximum resident set size (KB) = 806836 + 0: The total amount of wall time = 154.257453 + 0: The maximum resident set size (KB) = 805744 Test 099 control_ras_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_diag_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_diag_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_diag_debug_intel Checking test 100 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.707333 - 0: The maximum resident set size (KB) = 847580 + 0: The total amount of wall time = 153.711076 + 0: The maximum resident set size (KB) = 849048 Test 100 control_diag_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_debug_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_debug_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_debug_p8_intel Checking test 101 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 = 171.408918 - 0: The maximum resident set size (KB) = 1568064 + 0: The total amount of wall time = 173.845991 + 0: The maximum resident set size (KB) = 1589780 Test 101 control_debug_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/regional_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_debug_intel Checking test 102 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 = 1007.887904 - 0: The maximum resident set size (KB) = 886008 + 0: The total amount of wall time = 1014.021593 + 0: The maximum resident set size (KB) = 891740 Test 102 regional_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_control_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_control_debug_intel Checking test 103 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.987269 - 0: The maximum resident set size (KB) = 1175504 + 0: The total amount of wall time = 272.501547 + 0: The maximum resident set size (KB) = 1172588 Test 103 rap_control_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hrrr_control_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_debug_intel Checking test 104 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 = 275.198592 - 0: The maximum resident set size (KB) = 1174256 + 0: The total amount of wall time = 275.966299 + 0: The maximum resident set size (KB) = 1173664 Test 104 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_unified_drag_suite_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_unified_drag_suite_debug_intel Checking test 105 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.799833 - 0: The maximum resident set size (KB) = 1174952 + 0: The total amount of wall time = 276.487024 + 0: The maximum resident set size (KB) = 1175388 Test 105 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_diag_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_diag_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_diag_debug_intel Checking test 106 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.008531 - 0: The maximum resident set size (KB) = 1257208 + 0: The total amount of wall time = 292.076758 + 0: The maximum resident set size (KB) = 1260984 Test 106 rap_diag_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_cires_ugwp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_cires_ugwp_debug_intel Checking test 107 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 = 281.955245 - 0: The maximum resident set size (KB) = 1171396 + 0: The total amount of wall time = 285.123688 + 0: The maximum resident set size (KB) = 1177860 Test 107 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_unified_ugwp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_unified_ugwp_debug_intel Checking test 108 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 = 274.931704 - 0: The maximum resident set size (KB) = 1172408 + 0: The total amount of wall time = 277.294899 + 0: The maximum resident set size (KB) = 1180896 Test 108 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_lndp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_lndp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_lndp_debug_intel Checking test 109 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.553434 - 0: The maximum resident set size (KB) = 1176228 + 0: The total amount of wall time = 287.512685 + 0: The maximum resident set size (KB) = 1177340 Test 109 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_progcld_thompson_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_progcld_thompson_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_progcld_thompson_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_progcld_thompson_debug_intel Checking test 110 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 = 272.756185 - 0: The maximum resident set size (KB) = 1169012 + 0: The total amount of wall time = 278.994686 + 0: The maximum resident set size (KB) = 1181616 Test 110 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_noah_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_noah_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_noah_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_noah_debug_intel Checking test 111 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.259804 - 0: The maximum resident set size (KB) = 1170336 + 0: The total amount of wall time = 281.268767 + 0: The maximum resident set size (KB) = 1170444 Test 111 rap_noah_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_sfcdiff_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_sfcdiff_debug_intel Checking test 112 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 = 281.412751 - 0: The maximum resident set size (KB) = 1176256 + 0: The total amount of wall time = 274.754318 + 0: The maximum resident set size (KB) = 1174060 Test 112 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 467.451948 - 0: The maximum resident set size (KB) = 1173668 + 0: The total amount of wall time = 461.308018 + 0: The maximum resident set size (KB) = 1171244 Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rrfs_v1beta_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_v1beta_debug_intel Checking test 114 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.859195 - 0: The maximum resident set size (KB) = 1169748 + 0: The total amount of wall time = 276.006026 + 0: The maximum resident set size (KB) = 1167772 Test 114 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_clm_lake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_clm_lake_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_clm_lake_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_clm_lake_debug_intel Checking test 115 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.754116 - 0: The maximum resident set size (KB) = 1174952 + 0: The total amount of wall time = 357.441223 + 0: The maximum resident set size (KB) = 1177404 Test 115 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_flake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_flake_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_flake_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_flake_debug_intel Checking test 116 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.349244 - 0: The maximum resident set size (KB) = 1173204 + 0: The total amount of wall time = 283.180530 + 0: The maximum resident set size (KB) = 1171928 Test 116 rap_flake_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_wam_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_wam_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wam_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_wam_debug_intel Checking test 117 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 286.692119 - 0: The maximum resident set size (KB) = 522120 + 0: The total amount of wall time = 281.720581 + 0: The maximum resident set size (KB) = 523196 Test 117 control_wam_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3963,14 +4046,14 @@ Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 245.133126 - 0: The maximum resident set size (KB) = 1089500 + 0: The total amount of wall time = 248.927557 + 0: The maximum resident set size (KB) = 1088904 Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_control_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_control_dyn32_phy32_intel Checking test 119 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4017,14 +4100,14 @@ Checking test 119 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 368.675494 - 0: The maximum resident set size (KB) = 947128 + 0: The total amount of wall time = 368.352836 + 0: The maximum resident set size (KB) = 1010260 Test 119 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hrrr_control_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_dyn32_phy32_intel Checking test 120 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4071,14 +4154,14 @@ Checking test 120 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.522501 - 0: The maximum resident set size (KB) = 955700 + 0: The total amount of wall time = 190.206437 + 0: The maximum resident set size (KB) = 959548 Test 120 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_qr_dyn32_phy32_intel Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4125,14 +4208,14 @@ Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.975811 - 0: The maximum resident set size (KB) = 961688 + 0: The total amount of wall time = 194.601480 + 0: The maximum resident set size (KB) = 966340 Test 121 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_2threads_dyn32_phy32_intel Checking test 122 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4179,14 +4262,14 @@ Checking test 122 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 = 376.832994 - 0: The maximum resident set size (KB) = 1023188 + 0: The total amount of wall time = 388.198556 + 0: The maximum resident set size (KB) = 1024344 Test 122 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_2threads_dyn32_phy32_intel Checking test 123 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4233,14 +4316,14 @@ Checking test 123 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 = 164.876281 - 0: The maximum resident set size (KB) = 933560 + 0: The total amount of wall time = 174.749667 + 0: The maximum resident set size (KB) = 939596 Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_decomp_dyn32_phy32_intel Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4287,14 +4370,14 @@ Checking test 124 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 = 200.986780 - 0: The maximum resident set size (KB) = 901032 + 0: The total amount of wall time = 200.959869 + 0: The maximum resident set size (KB) = 903580 Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_restart_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_restart_dyn32_phy32_intel Checking test 125 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4333,42 +4416,42 @@ Checking test 125 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 = 273.100564 - 0: The maximum resident set size (KB) = 952516 + 0: The total amount of wall time = 274.209607 + 0: The maximum resident set size (KB) = 947040 Test 125 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_restart_dyn32_phy32_intel Checking test 126 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 = 98.145732 - 0: The maximum resident set size (KB) = 858636 + 0: The total amount of wall time = 98.558397 + 0: The maximum resident set size (KB) = 861072 Test 126 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 127 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.823293 - 0: The maximum resident set size (KB) = 878508 + 0: The total amount of wall time = 101.563721 + 0: The maximum resident set size (KB) = 872460 Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_fast_phy32_intel Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4384,14 +4467,14 @@ Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 115.059555 - 0: The maximum resident set size (KB) = 902668 + 0: The total amount of wall time = 115.308172 + 0: The maximum resident set size (KB) = 899684 Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4407,159 +4490,105 @@ Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_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.410110 - 0: The maximum resident set size (KB) = 926524 + 0: The total amount of wall time = 113.773084 + 0: The maximum resident set size (KB) = 928376 Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 64.149736 - 0: The maximum resident set size (KB) = 911248 + 0: The total amount of wall time = 65.142616 + 0: The maximum resident set size (KB) = 899704 Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 71.791195 - 0: The maximum resident set size (KB) = 863380 + 0: The total amount of wall time = 69.388530 + 0: The maximum resident set size (KB) = 916552 Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_control_dyn64_phy32_intel -Checking test 132 rap_control_dyn64_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 235.799022 - 0: The maximum resident set size (KB) = 970604 - -Test 132 rap_control_dyn64_phy32_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_control_debug_dyn32_phy32_intel Checking test 133 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.798023 - 0: The maximum resident set size (KB) = 1051692 + 0: The total amount of wall time = 271.901980 + 0: The maximum resident set size (KB) = 1063424 Test 133 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_debug_dyn32_phy32_intel Checking test 134 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.593934 - 0: The maximum resident set size (KB) = 1052048 + 0: The total amount of wall time = 269.159369 + 0: The maximum resident set size (KB) = 1050764 Test 134 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/rap_control_dyn64_phy32_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn64_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_control_dyn64_phy32_debug_intel Checking test 135 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.539690 - 0: The maximum resident set size (KB) = 1100012 + 0: The total amount of wall time = 278.569591 + 0: The maximum resident set size (KB) = 1102168 Test 135 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_regional_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_atm_intel Checking test 136 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 251.474372 - 0: The maximum resident set size (KB) = 998120 + 0: The total amount of wall time = 254.861600 + 0: The maximum resident set size (KB) = 1062208 Test 136 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_atm_thompson_gfdlsf_intel Checking test 137 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 384.330309 - 0: The maximum resident set size (KB) = 1418220 + 0: The total amount of wall time = 399.557415 + 0: The maximum resident set size (KB) = 1423528 Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_regional_atm_ocn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_atm_ocn_intel Checking test 138 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4568,14 +4597,14 @@ Checking test 138 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 = 373.639876 - 0: The maximum resident set size (KB) = 1226576 + 0: The total amount of wall time = 385.174540 + 0: The maximum resident set size (KB) = 1225072 Test 138 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_regional_atm_wav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_wav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_atm_wav_intel Checking test 139 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4584,14 +4613,14 @@ Checking test 139 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 = 731.715429 - 0: The maximum resident set size (KB) = 1251740 + 0: The total amount of wall time = 731.466615 + 0: The maximum resident set size (KB) = 1253844 Test 139 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_regional_atm_ocn_wav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_atm_ocn_wav_intel Checking test 140 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4602,14 +4631,14 @@ Checking test 140 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 = 830.674913 - 0: The maximum resident set size (KB) = 1279336 + 0: The total amount of wall time = 838.512615 + 0: The maximum resident set size (KB) = 1278848 Test 140 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_regional_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_1nest_atm_intel Checking test 141 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4631,14 +4660,14 @@ Checking test 141 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 = 336.435409 - 0: The maximum resident set size (KB) = 505196 + 0: The total amount of wall time = 348.899131 + 0: The maximum resident set size (KB) = 506220 Test 141 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_regional_1nest_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_1nest_atm_qr_intel Checking test 142 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4660,14 +4689,14 @@ Checking test 142 hafs_regional_1nest_atm_qr_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 = 342.251860 - 0: The maximum resident set size (KB) = 475984 + 0: The total amount of wall time = 352.038456 + 0: The maximum resident set size (KB) = 477400 Test 142 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_telescopic_2nests_atm_intel Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4676,14 +4705,14 @@ Checking test 143 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 = 387.157027 - 0: The maximum resident set size (KB) = 513032 + 0: The total amount of wall time = 390.904575 + 0: The maximum resident set size (KB) = 514900 Test 143 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_global_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_global_1nest_atm_intel Checking test 144 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4730,14 +4759,14 @@ Checking test 144 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 = 164.852544 - 0: The maximum resident set size (KB) = 355664 + 0: The total amount of wall time = 167.689298 + 0: The maximum resident set size (KB) = 349148 Test 144 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_global_1nest_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_global_1nest_atm_qr_intel Checking test 145 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4784,14 +4813,14 @@ Checking test 145 hafs_global_1nest_atm_qr_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 = 165.957964 - 0: The maximum resident set size (KB) = 355772 + 0: The total amount of wall time = 173.305021 + 0: The maximum resident set size (KB) = 357204 Test 145 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_global_multiple_4nests_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_global_multiple_4nests_atm_intel Checking test 146 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4873,14 +4902,14 @@ Checking test 146 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 = 435.479516 - 0: The maximum resident set size (KB) = 425864 + 0: The total amount of wall time = 438.735529 + 0: The maximum resident set size (KB) = 420740 Test 146 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_global_multiple_4nests_atm_qr_intel Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4962,14 +4991,14 @@ Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 450.170178 - 0: The maximum resident set size (KB) = 451080 + 0: The total amount of wall time = 455.389825 + 0: The maximum resident set size (KB) = 449444 Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_specified_moving_1nest_atm_intel Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4978,14 +5007,14 @@ Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 217.298995 - 0: The maximum resident set size (KB) = 517584 + 0: The total amount of wall time = 217.099291 + 0: The maximum resident set size (KB) = 527092 Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_storm_following_1nest_atm_intel Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5007,14 +5036,14 @@ Checking test 149 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 = 204.084693 - 0: The maximum resident set size (KB) = 522364 + 0: The total amount of wall time = 212.833807 + 0: The maximum resident set size (KB) = 523672 Test 149 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5036,14 +5065,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_qr_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 = 212.501985 - 0: The maximum resident set size (KB) = 508752 + 0: The total amount of wall time = 220.570245 + 0: The maximum resident set size (KB) = 502376 Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5052,42 +5081,42 @@ Checking test 151 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 = 285.304718 - 0: The maximum resident set size (KB) = 564212 + 0: The total amount of wall time = 288.742222 + 0: The maximum resident set size (KB) = 562836 Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_global_storm_following_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_global_storm_following_1nest_atm_intel Checking test 152 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 = 90.802657 - 0: The maximum resident set size (KB) = 373744 + 0: The total amount of wall time = 64.965989 + 0: The maximum resident set size (KB) = 372440 Test 152 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 153 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 = 761.358751 - 0: The maximum resident set size (KB) = 585656 + 0: The total amount of wall time = 750.880672 + 0: The maximum resident set size (KB) = 587228 Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5098,14 +5127,14 @@ Checking test 154 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 = 543.567872 - 0: The maximum resident set size (KB) = 571540 + 0: The total amount of wall time = 547.785002 + 0: The maximum resident set size (KB) = 620888 Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_docn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_regional_docn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_docn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_docn_intel Checking test 155 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5113,14 +5142,14 @@ Checking test 155 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 = 339.820324 - 0: The maximum resident set size (KB) = 1200392 + 0: The total amount of wall time = 339.935360 + 0: The maximum resident set size (KB) = 1232744 Test 155 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_docn_oisst_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_regional_docn_oisst_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_docn_oisst_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_docn_oisst_intel Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5128,131 +5157,131 @@ Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 347.808739 - 0: The maximum resident set size (KB) = 1176592 + 0: The total amount of wall time = 345.351614 + 0: The maximum resident set size (KB) = 1216512 Test 156 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/hafs_regional_datm_cdeps_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_datm_cdeps_intel Checking test 157 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 = 937.392220 - 0: The maximum resident set size (KB) = 1038904 + 0: The total amount of wall time = 933.829839 + 0: The maximum resident set size (KB) = 1038220 Test 157 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/datm_cdeps_control_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_control_cfsr_intel Checking test 158 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 = 142.957587 - 0: The maximum resident set size (KB) = 1062052 + 0: The total amount of wall time = 144.653782 + 0: The maximum resident set size (KB) = 1065676 Test 158 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/datm_cdeps_restart_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_restart_cfsr_intel Checking test 159 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 89.843999 - 0: The maximum resident set size (KB) = 1023000 + 0: The total amount of wall time = 90.071848 + 0: The maximum resident set size (KB) = 1015784 Test 159 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/datm_cdeps_control_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_control_gefs_intel Checking test 160 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 = 138.395007 - 0: The maximum resident set size (KB) = 957384 + 0: The total amount of wall time = 140.010641 + 0: The maximum resident set size (KB) = 960284 Test 160 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/datm_cdeps_iau_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_iau_gefs_intel Checking test 161 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.914739 - 0: The maximum resident set size (KB) = 966228 + 0: The total amount of wall time = 144.492664 + 0: The maximum resident set size (KB) = 972188 Test 161 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/datm_cdeps_stochy_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_stochy_gefs_intel Checking test 162 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.030540 - 0: The maximum resident set size (KB) = 965460 + 0: The total amount of wall time = 144.519637 + 0: The maximum resident set size (KB) = 970796 Test 162 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/datm_cdeps_ciceC_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_ciceC_cfsr_intel Checking test 163 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 = 171.524925 - 0: The maximum resident set size (KB) = 1070292 + 0: The total amount of wall time = 147.626359 + 0: The maximum resident set size (KB) = 1069748 Test 163 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/datm_cdeps_bulk_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_bulk_cfsr_intel Checking test 164 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.343889 - 0: The maximum resident set size (KB) = 1057884 + 0: The total amount of wall time = 148.712183 + 0: The maximum resident set size (KB) = 1066100 Test 164 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/datm_cdeps_bulk_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_bulk_gefs_intel Checking test 165 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 = 138.894421 - 0: The maximum resident set size (KB) = 958140 + 0: The total amount of wall time = 141.086664 + 0: The maximum resident set size (KB) = 966944 Test 165 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/datm_cdeps_mx025_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_mx025_cfsr_intel Checking test 166 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5261,14 +5290,14 @@ Checking test 166 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 = 428.472886 - 0: The maximum resident set size (KB) = 875172 + 0: The total amount of wall time = 440.531267 + 0: The maximum resident set size (KB) = 872164 Test 166 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/datm_cdeps_mx025_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_mx025_gefs_intel Checking test 167 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5277,77 +5306,77 @@ Checking test 167 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 = 432.547930 - 0: The maximum resident set size (KB) = 935792 + 0: The total amount of wall time = 433.049822 + 0: The maximum resident set size (KB) = 930164 Test 167 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_multiple_files_cfsr_intel Checking test 168 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 = 143.860259 - 0: The maximum resident set size (KB) = 1061728 + 0: The total amount of wall time = 144.288663 + 0: The maximum resident set size (KB) = 1072452 Test 168 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_3072x1536_cfsr_intel Checking test 169 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 = 192.755492 - 0: The maximum resident set size (KB) = 2365436 + 0: The total amount of wall time = 193.655451 + 0: The maximum resident set size (KB) = 2372532 Test 169 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_gfs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/datm_cdeps_gfs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_gfs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_gfs_intel Checking test 170 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 = 193.705703 - 0: The maximum resident set size (KB) = 2357068 + 0: The total amount of wall time = 196.436069 + 0: The maximum resident set size (KB) = 2367560 Test 170 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/datm_cdeps_debug_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_debug_cfsr_intel Checking test 171 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.921425 - 0: The maximum resident set size (KB) = 981788 + 0: The total amount of wall time = 360.162873 + 0: The maximum resident set size (KB) = 1002884 Test 171 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/datm_cdeps_control_cfsr_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_control_cfsr_faster_intel Checking test 172 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.252979 - 0: The maximum resident set size (KB) = 1068332 + 0: The total amount of wall time = 143.945700 + 0: The maximum resident set size (KB) = 1073508 Test 172 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/datm_cdeps_lnd_gswp3_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_lnd_gswp3_intel Checking test 173 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 @@ -5356,14 +5385,14 @@ Checking test 173 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 = 7.542586 - 0: The maximum resident set size (KB) = 260200 + 0: The total amount of wall time = 6.969437 + 0: The maximum resident set size (KB) = 259424 Test 173 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_lnd_gswp3_rst_intel Checking test 174 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5372,14 +5401,14 @@ Checking test 174 datm_cdeps_lnd_gswp3_rst_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 = 12.904440 - 0: The maximum resident set size (KB) = 269360 + 0: The total amount of wall time = 13.304199 + 0: The maximum resident set size (KB) = 260184 Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_p8_atmlnd_sbs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_p8_atmlnd_sbs_intel Checking test 175 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5464,14 +5493,14 @@ Checking test 175 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 = 201.303626 - 0: The maximum resident set size (KB) = 1615824 + 0: The total amount of wall time = 203.989566 + 0: The maximum resident set size (KB) = 1611632 Test 175 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/atmwav_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/atmwav_control_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmwav_control_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/atmwav_control_noaero_p8_intel Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5514,14 +5543,14 @@ Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 93.217575 - 0: The maximum resident set size (KB) = 1647788 + 0: The total amount of wall time = 94.498751 + 0: The maximum resident set size (KB) = 1646088 Test 176 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/control_atmwav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/control_atmwav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_atmwav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_atmwav_intel Checking test 177 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5565,14 +5594,14 @@ Checking test 177 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 87.212495 - 0: The maximum resident set size (KB) = 664504 + 0: The total amount of wall time = 86.792694 + 0: The maximum resident set size (KB) = 664688 Test 177 control_atmwav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/atmaero_control_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/atmaero_control_p8_intel Checking test 178 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5616,14 +5645,14 @@ Checking test 178 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.556697 - 0: The maximum resident set size (KB) = 2984960 + 0: The total amount of wall time = 228.693701 + 0: The maximum resident set size (KB) = 2977992 Test 178 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_rad_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/atmaero_control_p8_rad_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/atmaero_control_p8_rad_intel Checking test 179 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5667,14 +5696,14 @@ Checking test 179 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 277.059090 - 0: The maximum resident set size (KB) = 3041768 + 0: The total amount of wall time = 279.649382 + 0: The maximum resident set size (KB) = 3057368 Test 179 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/atmaero_control_p8_rad_micro_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/atmaero_control_p8_rad_micro_intel Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5718,14 +5747,14 @@ Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 284.374207 - 0: The maximum resident set size (KB) = 3054760 + 0: The total amount of wall time = 284.656611 + 0: The maximum resident set size (KB) = 3056964 Test 180 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_atmaq_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/regional_atmaq_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_atmaq_intel Checking test 181 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5741,14 +5770,14 @@ Checking test 181 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 625.093276 - 0: The maximum resident set size (KB) = 1287808 + 0: The total amount of wall time = 612.188237 + 0: The maximum resident set size (KB) = 1477288 Test 181 regional_atmaq_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_atmaq_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/regional_atmaq_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_atmaq_debug_intel Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5762,14 +5791,14 @@ Checking test 182 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1222.020704 - 0: The maximum resident set size (KB) = 1415500 + 0: The total amount of wall time = 1207.869627 + 0: The maximum resident set size (KB) = 1394300 -Test 182 regional_atmaq_debug_intel PASS +Test 182 regional_atmaq_debug_intel PASS Tries: 2 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/regional_atmaq_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1797/stmp/zshrader/FV3_RT/rt_110233/regional_atmaq_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_atmaq_faster_intel Checking test 183 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5785,227 +5814,11 @@ Checking test 183 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 540.304579 - 0: The maximum resident set size (KB) = 1298524 + 0: The total amount of wall time = 546.523382 + 0: The maximum resident set size (KB) = 1473196 Test 183 regional_atmaq_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/stmp/zshrader/FV3_RT/rt_18865/hrrr_control_intel -Checking test 001 hrrr_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 430.376763 - 0: The maximum resident set size (KB) = 1062280 - -Test 001 hrrr_control_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/stmp/zshrader/FV3_RT/rt_18865/hrrr_control_qr_intel -Checking test 002 hrrr_control_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 428.264606 - 0: The maximum resident set size (KB) = 1070088 - -Test 002 hrrr_control_qr_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/stmp/zshrader/FV3_RT/rt_18865/hrrr_control_decomp_intel -Checking test 003 hrrr_control_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 447.303801 - 0: The maximum resident set size (KB) = 1003044 - -Test 003 hrrr_control_decomp_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/stmp/zshrader/FV3_RT/rt_18865/hrrr_control_2threads_intel -Checking test 004 hrrr_control_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 360.817955 - 0: The maximum resident set size (KB) = 1086780 - -Test 004 hrrr_control_2threads_intel PASS - - REGRESSION TEST WAS SUCCESSFUL -Mon Jul 10 08:21:32 CDT 2023 -Elapsed time: 00h:22m:58s. Have a nice day! +Fri Jul 14 17:05:20 CDT 2023 +Elapsed time: 01h:57m:58s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index ca65d5c019..62796ca942 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,47 +1,48 @@ -Thu Jul 6 17:44:52 UTC 2023 +Fri Jul 14 13:32:57 UTC 2023 Start Regression test -Testing UFSWM Hash: cae4b9e20032f6d81bde72c016d9c485b85dc052 +Testing UFSWM Hash: 328cb7309d2abb5a35b24cd605c9c867a6c32152 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 5840cd1931e2e32b9dfded0c19049d0f1ec3d04c ../CICE-interface/CICE (CICE6.0.0-440-g5840cd1) - 19a72682afe4daba7443864f7e2119709ec7462b ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2295-g19a72682) + 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2295-g9923d6d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 53e98c7af8e6efd13c4607786c0bbfb6fba08c62 ../FV3 (remotes/origin/feature/evapfratm) + b6901a95012bfe2fb65fc2bd86a67749f7d80441 ../FV3 (remotes/origin/hr2_land1) b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) - e1260f1ee711f66a1141010d13511a69c0f8637b ../NOAHMP-interface/noahmp (v3.7.1-292-ge1260f1) + 8dbe01268bd76a0c1860200d2fc152aa600e149f ../NOAHMP-interface/noahmp (v3.7.1-302-g8dbe012) c4b116886b5ef9af5fb4942d7161074df3402732 ../WW3 (6.07.1-325-gc4b11688) 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile 001 elapsed time 1752 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1155 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 2260 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 1086 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1181 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1829 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 2266 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 2046 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 014 elapsed time 1786 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 1385 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 2456 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 017 elapsed time 1230 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 1075 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 2516 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 020 elapsed time 2396 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 1254 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 023 elapsed time 553 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 1182 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 025 elapsed time 2178 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 1582 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 034 elapsed time 1277 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 035 elapsed time 1191 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 036 elapsed time 646 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 788 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 833 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 996 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 690 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1561 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 1329 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 1425 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 2034 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 1183 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 1452 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 1183 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 1748 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 2226 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 1187 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 1852 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 807 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 994 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 994 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 2191 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1565 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1890 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 1867 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1336 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 1024 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 2354 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-20230713/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -106,14 +107,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 = 334.573106 -The maximum resident set size (KB) = 2953208 +The total amount of wall time = 339.981038 +The maximum resident set size (KB) = 2949976 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/cpld_control_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -177,14 +178,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 = 255.459496 -The maximum resident set size (KB) = 1568984 +The total amount of wall time = 259.318109 +The maximum resident set size (KB) = 1567328 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/cpld_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -249,14 +250,14 @@ Checking test 003 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 = 393.330936 -The maximum resident set size (KB) = 2976024 +The total amount of wall time = 386.984925 +The maximum resident set size (KB) = 2976580 Test 003 cpld_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/cpld_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -309,14 +310,14 @@ Checking test 004 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 = 244.514583 -The maximum resident set size (KB) = 2862840 +The total amount of wall time = 241.976575 +The maximum resident set size (KB) = 2867352 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/cpld_control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -381,14 +382,14 @@ Checking test 005 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 = 389.602919 -The maximum resident set size (KB) = 2989144 +The total amount of wall time = 391.833557 +The maximum resident set size (KB) = 2991672 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/cpld_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -441,14 +442,14 @@ Checking test 006 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 = 234.093121 -The maximum resident set size (KB) = 2882396 +The total amount of wall time = 243.110268 +The maximum resident set size (KB) = 2880108 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/cpld_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -501,14 +502,14 @@ Checking test 007 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 = 367.240044 -The maximum resident set size (KB) = 3284476 +The total amount of wall time = 370.817061 +The maximum resident set size (KB) = 3281964 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/cpld_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -561,14 +562,14 @@ Checking test 008 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 = 386.047271 -The maximum resident set size (KB) = 2974844 +The total amount of wall time = 381.695605 +The maximum resident set size (KB) = 2982032 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/cpld_mpi_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -621,14 +622,14 @@ Checking test 009 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 = 327.614471 -The maximum resident set size (KB) = 2913488 +The total amount of wall time = 327.737301 +The maximum resident set size (KB) = 2910076 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -693,14 +694,14 @@ Checking test 010 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 = 386.111427 -The maximum resident set size (KB) = 2977832 +The total amount of wall time = 387.961246 +The maximum resident set size (KB) = 2979496 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/cpld_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_bmark_p8_intel Checking test 011 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -748,14 +749,14 @@ Checking test 011 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 = 943.217208 -The maximum resident set size (KB) = 3921080 +The total amount of wall time = 949.664185 +The maximum resident set size (KB) = 3907548 Test 011 cpld_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/cpld_restart_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_restart_bmark_p8_intel Checking test 012 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -803,14 +804,14 @@ Checking test 012 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 = 735.593799 -The maximum resident set size (KB) = 3882748 +The total amount of wall time = 662.700637 +The maximum resident set size (KB) = 3873856 Test 012 cpld_restart_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/cpld_control_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_control_noaero_p8_intel Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -874,14 +875,14 @@ Checking test 013 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 = 293.289542 -The maximum resident set size (KB) = 1582068 +The total amount of wall time = 291.305218 +The maximum resident set size (KB) = 1583132 Test 013 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_control_nowave_noaero_p8_intel Checking test 014 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -943,14 +944,14 @@ Checking test 014 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 = 298.968124 -The maximum resident set size (KB) = 1629632 +The total amount of wall time = 306.563022 +The maximum resident set size (KB) = 1628732 Test 014 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1012,14 +1013,14 @@ Checking test 015 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 = 307.200802 -The maximum resident set size (KB) = 1629460 +The total amount of wall time = 311.223751 +The maximum resident set size (KB) = 1631752 Test 015 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/cpld_control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1069,14 +1070,14 @@ Checking test 016 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 = 432.417598 -The maximum resident set size (KB) = 2638808 +The total amount of wall time = 436.424417 +The maximum resident set size (KB) = 2641904 Test 016 cpld_control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/cpld_control_p8_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1141,14 +1142,14 @@ Checking test 017 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 = 379.071511 -The maximum resident set size (KB) = 2981196 +The total amount of wall time = 382.488881 +The maximum resident set size (KB) = 2984284 Test 017 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_flake_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1159,14 +1160,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 217.159525 -The maximum resident set size (KB) = 565820 +The total amount of wall time = 216.529575 +The maximum resident set size (KB) = 565104 Test 018 control_flake_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_CubedSphereGrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1193,14 +1194,14 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.984548 -The maximum resident set size (KB) = 513788 +The total amount of wall time = 129.968674 +The maximum resident set size (KB) = 512364 Test 019 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_latlon_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_latlon_intel Checking test 020 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1211,14 +1212,14 @@ Checking test 020 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.479798 -The maximum resident set size (KB) = 517304 +The total amount of wall time = 132.775350 +The maximum resident set size (KB) = 517272 Test 020 control_latlon_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_wrtGauss_netcdf_parallel_intel Checking test 021 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1229,14 +1230,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.328101 -The maximum resident set size (KB) = 515908 +The total amount of wall time = 135.432866 +The maximum resident set size (KB) = 514840 Test 021 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_c48_intel Checking test 022 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1275,14 +1276,14 @@ Checking test 022 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 327.246187 -The maximum resident set size (KB) = 671092 +The total amount of wall time = 326.518581 +The maximum resident set size (KB) = 672396 Test 022 control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_c192_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_c192_intel Checking test 023 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1293,14 +1294,14 @@ Checking test 023 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 528.872684 -The maximum resident set size (KB) = 616444 +The total amount of wall time = 534.335620 +The maximum resident set size (KB) = 615000 Test 023 control_c192_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_c384_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_c384_intel Checking test 024 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1311,14 +1312,14 @@ Checking test 024 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 563.145218 -The maximum resident set size (KB) = 925416 +The total amount of wall time = 567.661786 +The maximum resident set size (KB) = 922192 Test 024 control_c384_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_c384gdas_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_c384gdas_intel Checking test 025 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1361,14 +1362,14 @@ Checking test 025 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 = 494.213663 -The maximum resident set size (KB) = 1066600 +The total amount of wall time = 499.581802 +The maximum resident set size (KB) = 1057504 Test 025 control_c384gdas_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_stochy_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_stochy_intel Checking test 026 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1379,28 +1380,28 @@ Checking test 026 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.144593 -The maximum resident set size (KB) = 519980 +The total amount of wall time = 95.001677 +The maximum resident set size (KB) = 521668 Test 026 control_stochy_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_stochy_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_stochy_restart_intel Checking test 027 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.555780 -The maximum resident set size (KB) = 291476 +The total amount of wall time = 49.652390 +The maximum resident set size (KB) = 291332 Test 027 control_stochy_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_lndp_intel Checking test 028 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1411,14 +1412,14 @@ Checking test 028 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 84.418725 -The maximum resident set size (KB) = 517648 +The total amount of wall time = 90.748784 +The maximum resident set size (KB) = 520748 Test 028 control_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_iovr4_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_iovr4_intel Checking test 029 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1433,14 +1434,14 @@ Checking test 029 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.376781 -The maximum resident set size (KB) = 518948 +The total amount of wall time = 138.271800 +The maximum resident set size (KB) = 513496 Test 029 control_iovr4_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_iovr5_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_iovr5_intel Checking test 030 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1455,14 +1456,14 @@ Checking test 030 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.395096 -The maximum resident set size (KB) = 513960 +The total amount of wall time = 138.341677 +The maximum resident set size (KB) = 515984 Test 030 control_iovr5_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_p8_intel Checking test 031 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1509,14 +1510,14 @@ Checking test 031 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 = 177.478857 -The maximum resident set size (KB) = 1496280 +The total amount of wall time = 181.177282 +The maximum resident set size (KB) = 1497392 Test 031 control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_restart_p8_intel Checking test 032 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1555,14 +1556,14 @@ Checking test 032 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 = 100.861147 -The maximum resident set size (KB) = 658168 +The total amount of wall time = 101.640799 +The maximum resident set size (KB) = 656628 Test 032 control_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_qr_p8_intel Checking test 033 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1609,14 +1610,14 @@ Checking test 033 control_qr_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 = 176.202631 -The maximum resident set size (KB) = 1495876 +The total amount of wall time = 178.783378 +The maximum resident set size (KB) = 1501712 Test 033 control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_restart_qr_p8_intel Checking test 034 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1655,14 +1656,14 @@ Checking test 034 control_restart_qr_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 = 102.132836 -The maximum resident set size (KB) = 666392 +The total amount of wall time = 102.901049 +The maximum resident set size (KB) = 664784 Test 034 control_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_decomp_p8_intel Checking test 035 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1705,14 +1706,14 @@ Checking test 035 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 = 179.965864 -The maximum resident set size (KB) = 1486832 +The total amount of wall time = 183.866184 +The maximum resident set size (KB) = 1484068 Test 035 control_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_2threads_p8_intel Checking test 036 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1755,14 +1756,14 @@ Checking test 036 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 = 153.729357 -The maximum resident set size (KB) = 1572592 +The total amount of wall time = 157.998458 +The maximum resident set size (KB) = 1566928 Test 036 control_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_p8_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_p8_lndp_intel Checking test 037 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1781,14 +1782,14 @@ Checking test 037 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 316.792498 -The maximum resident set size (KB) = 1484512 +The total amount of wall time = 323.027274 +The maximum resident set size (KB) = 1498268 Test 037 control_p8_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_p8_rrtmgp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_p8_rrtmgp_intel Checking test 038 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1835,14 +1836,14 @@ Checking test 038 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 = 233.850354 -The maximum resident set size (KB) = 1550580 +The total amount of wall time = 236.924285 +The maximum resident set size (KB) = 1549760 Test 038 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_p8_mynn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_p8_mynn_intel Checking test 039 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1889,14 +1890,14 @@ Checking test 039 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 = 179.891691 -The maximum resident set size (KB) = 1494724 +The total amount of wall time = 182.265958 +The maximum resident set size (KB) = 1491432 Test 039 control_p8_mynn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/merra2_thompson_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/merra2_thompson_intel Checking test 040 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1943,14 +1944,14 @@ Checking test 040 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 203.599159 -The maximum resident set size (KB) = 1498676 +The total amount of wall time = 206.087446 +The maximum resident set size (KB) = 1492008 Test 040 merra2_thompson_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/regional_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_control_intel Checking test 041 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1961,28 +1962,28 @@ Checking test 041 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 285.323270 -The maximum resident set size (KB) = 654828 +The total amount of wall time = 285.022680 +The maximum resident set size (KB) = 655380 Test 041 regional_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/regional_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_restart_intel Checking test 042 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 151.778875 -The maximum resident set size (KB) = 654708 +The total amount of wall time = 158.405306 +The maximum resident set size (KB) = 658508 Test 042 regional_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/regional_control_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_control_qr_intel Checking test 043 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1993,28 +1994,28 @@ Checking test 043 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 285.072396 -The maximum resident set size (KB) = 654352 +The total amount of wall time = 286.762830 +The maximum resident set size (KB) = 658624 Test 043 regional_control_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/regional_restart_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_restart_qr_intel Checking test 044 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 151.589423 -The maximum resident set size (KB) = 651520 +The total amount of wall time = 160.800545 +The maximum resident set size (KB) = 651780 Test 044 regional_restart_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/regional_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_decomp_intel Checking test 045 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2025,14 +2026,14 @@ Checking test 045 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 299.666225 -The maximum resident set size (KB) = 653756 +The total amount of wall time = 300.804066 +The maximum resident set size (KB) = 656636 Test 045 regional_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/regional_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_2threads_intel Checking test 046 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2043,14 +2044,14 @@ Checking test 046 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 171.205432 -The maximum resident set size (KB) = 697004 +The total amount of wall time = 173.840130 +The maximum resident set size (KB) = 700348 Test 046 regional_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/regional_noquilt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_noquilt_intel Checking test 047 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2058,28 +2059,28 @@ Checking test 047 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 279.757469 -The maximum resident set size (KB) = 645180 +The total amount of wall time = 282.698811 +The maximum resident set size (KB) = 647224 Test 047 regional_noquilt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/regional_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_netcdf_parallel_intel Checking test 048 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 = 280.379047 -The maximum resident set size (KB) = 654368 +The total amount of wall time = 281.310533 +The maximum resident set size (KB) = 656632 Test 048 regional_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/regional_2dwrtdecomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_2dwrtdecomp_intel Checking test 049 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2090,14 +2091,14 @@ Checking test 049 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 284.522072 -The maximum resident set size (KB) = 652716 +The total amount of wall time = 286.478399 +The maximum resident set size (KB) = 655456 Test 049 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/regional_wofs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_wofs_intel Checking test 050 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2108,14 +2109,14 @@ Checking test 050 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 378.217877 -The maximum resident set size (KB) = 340440 +The total amount of wall time = 364.260877 +The maximum resident set size (KB) = 342912 Test 050 regional_wofs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_control_intel Checking test 051 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2162,14 +2163,14 @@ Checking test 051 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 = 407.783639 -The maximum resident set size (KB) = 896376 +The total amount of wall time = 407.249404 +The maximum resident set size (KB) = 892752 Test 051 rap_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_spp_sppt_shum_skeb_intel Checking test 052 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2180,14 +2181,14 @@ Checking test 052 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 239.674498 -The maximum resident set size (KB) = 990408 +The total amount of wall time = 243.285097 +The maximum resident set size (KB) = 993864 Test 052 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_decomp_intel Checking test 053 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2234,14 +2235,14 @@ Checking test 053 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.484688 -The maximum resident set size (KB) = 895776 +The total amount of wall time = 421.330851 +The maximum resident set size (KB) = 896424 Test 053 rap_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_2threads_intel Checking test 054 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2288,14 +2289,14 @@ Checking test 054 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 = 367.580983 -The maximum resident set size (KB) = 978436 +The total amount of wall time = 367.100458 +The maximum resident set size (KB) = 979000 Test 054 rap_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_restart_intel Checking test 055 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2334,14 +2335,14 @@ Checking test 055 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.543839 -The maximum resident set size (KB) = 640372 +The total amount of wall time = 209.266918 +The maximum resident set size (KB) = 639128 Test 055 rap_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_sfcdiff_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_sfcdiff_intel Checking test 056 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2388,14 +2389,14 @@ Checking test 056 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 408.721434 -The maximum resident set size (KB) = 897296 +The total amount of wall time = 409.146582 +The maximum resident set size (KB) = 892256 Test 056 rap_sfcdiff_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_sfcdiff_decomp_intel Checking test 057 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2442,14 +2443,14 @@ Checking test 057 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 = 424.535355 -The maximum resident set size (KB) = 898892 +The total amount of wall time = 425.590728 +The maximum resident set size (KB) = 895528 Test 057 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_sfcdiff_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_sfcdiff_restart_intel Checking test 058 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2488,231 +2489,15 @@ Checking test 058 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.011393 -The maximum resident set size (KB) = 645444 +The total amount of wall time = 301.953701 +The maximum resident set size (KB) = 644312 Test 058 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hrrr_control_intel -Checking test 059 hrrr_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 395.024957 -The maximum resident set size (KB) = 890980 - -Test 059 hrrr_control_intel FAIL Tries: 2 - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hrrr_control_qr_intel -Checking test 060 hrrr_control_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 386.995683 -The maximum resident set size (KB) = 902004 - -Test 060 hrrr_control_qr_intel FAIL Tries: 2 - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hrrr_control_decomp_intel -Checking test 061 hrrr_control_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 408.825150 -The maximum resident set size (KB) = 896024 - -Test 061 hrrr_control_decomp_intel FAIL Tries: 2 - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hrrr_control_2threads_intel -Checking test 062 hrrr_control_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 350.192232 -The maximum resident set size (KB) = 967296 - -Test 062 hrrr_control_2threads_intel FAIL Tries: 2 - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rrfs_v1beta_intel -Checking test 065 rrfs_v1beta_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_v1beta_intel +Checking test 059 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2758,15 +2543,15 @@ Checking test 065 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 = 406.801564 -The maximum resident set size (KB) = 892820 +The total amount of wall time = 402.782267 +The maximum resident set size (KB) = 889852 -Test 065 rrfs_v1beta_intel PASS +Test 059 rrfs_v1beta_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rrfs_v1nssl_intel -Checking test 066 rrfs_v1nssl_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_v1nssl_intel +Checking test 060 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2780,15 +2565,15 @@ Checking test 066 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 466.059157 -The maximum resident set size (KB) = 581924 +The total amount of wall time = 467.166111 +The maximum resident set size (KB) = 576692 -Test 066 rrfs_v1nssl_intel PASS +Test 060 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rrfs_v1nssl_nohailnoccn_intel -Checking test 067 rrfs_v1nssl_nohailnoccn_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_v1nssl_nohailnoccn_intel +Checking test 061 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2802,15 +2587,15 @@ Checking test 067 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 459.711380 -The maximum resident set size (KB) = 573540 +The total amount of wall time = 455.010538 +The maximum resident set size (KB) = 571528 -Test 067 rrfs_v1nssl_nohailnoccn_intel PASS +Test 061 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rrfs_smoke_conus13km_hrrr_warm_intel -Checking test 068 rrfs_smoke_conus13km_hrrr_warm_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_hrrr_warm_intel +Checking test 062 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2825,31 +2610,54 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 153.988609 -The maximum resident set size (KB) = 794332 +The total amount of wall time = 160.117656 +The maximum resident set size (KB) = 796388 -Test 068 rrfs_smoke_conus13km_hrrr_warm_intel PASS +Test 062 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rrfs_smoke_conus13km_hrrr_warm_2threads_intel -Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_hrrr_warm_qr_intel +Checking test 063 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 108.272939 -The maximum resident set size (KB) = 803320 +The total amount of wall time = 152.635611 +The maximum resident set size (KB) = 737216 -Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS +Test 063 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rrfs_conus13km_hrrr_warm_intel -Checking test 070 rrfs_conus13km_hrrr_warm_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +Checking test 064 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 115.859610 +The maximum resident set size (KB) = 802800 + +Test 064 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_conus13km_hrrr_warm_intel +Checking test 065 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2864,15 +2672,15 @@ Checking test 070 rrfs_conus13km_hrrr_warm_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 138.939071 -The maximum resident set size (KB) = 787356 +The total amount of wall time = 145.645719 +The maximum resident set size (KB) = 785612 -Test 070 rrfs_conus13km_hrrr_warm_intel PASS +Test 065 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rrfs_smoke_conus13km_radar_tten_warm_intel -Checking test 071 rrfs_smoke_conus13km_radar_tten_warm_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_radar_tten_warm_intel +Checking test 066 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2880,27 +2688,39 @@ Checking test 071 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 155.635288 -The maximum resident set size (KB) = 807088 +The total amount of wall time = 161.928684 +The maximum resident set size (KB) = 800516 -Test 071 rrfs_smoke_conus13km_radar_tten_warm_intel PASS +Test 066 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -Checking test 072 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +Checking test 067 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 97.203185 -The maximum resident set size (KB) = 792568 +The total amount of wall time = 106.431229 +The maximum resident set size (KB) = 793856 + +Test 067 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS + -Test 072 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +Checking test 068 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK +The total amount of wall time = 112.253030 +The maximum resident set size (KB) = 792084 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_csawmg_intel -Checking test 073 control_csawmg_intel results .... +Test 068 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_csawmg_intel +Checking test 069 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2910,15 +2730,15 @@ Checking test 073 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 342.403480 -The maximum resident set size (KB) = 584904 +The total amount of wall time = 340.833969 +The maximum resident set size (KB) = 585704 -Test 073 control_csawmg_intel PASS +Test 069 control_csawmg_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_csawmgt_intel -Checking test 074 control_csawmgt_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_csawmgt_intel +Checking test 070 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2928,15 +2748,15 @@ Checking test 074 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 338.640779 -The maximum resident set size (KB) = 585768 +The total amount of wall time = 338.317925 +The maximum resident set size (KB) = 583732 -Test 074 control_csawmgt_intel PASS +Test 070 control_csawmgt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_ras_intel -Checking test 075 control_ras_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_ras_intel +Checking test 071 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2946,27 +2766,27 @@ Checking test 075 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 183.195185 -The maximum resident set size (KB) = 552924 +The total amount of wall time = 183.232136 +The maximum resident set size (KB) = 553020 -Test 075 control_ras_intel PASS +Test 071 control_ras_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_wam_intel -Checking test 076 control_wam_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_wam_intel +Checking test 072 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.155089 -The maximum resident set size (KB) = 277168 +The total amount of wall time = 118.412480 +The maximum resident set size (KB) = 274640 -Test 076 control_wam_intel PASS +Test 072 control_wam_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_p8_faster_intel -Checking test 077 control_p8_faster_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_p8_faster_intel +Checking test 073 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3012,15 +2832,15 @@ Checking test 077 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 192.233090 -The maximum resident set size (KB) = 1484944 +The total amount of wall time = 178.255178 +The maximum resident set size (KB) = 1487756 -Test 077 control_p8_faster_intel PASS +Test 073 control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/regional_control_faster_intel -Checking test 078 regional_control_faster_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_control_faster_intel +Checking test 074 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3030,57 +2850,57 @@ Checking test 078 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.819598 -The maximum resident set size (KB) = 657608 +The total amount of wall time = 280.236988 +The maximum resident set size (KB) = 657672 -Test 078 regional_control_faster_intel PASS +Test 074 regional_control_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rrfs_smoke_conus13km_hrrr_warm_debug_intel -Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_hrrr_warm_debug_intel +Checking test 075 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 912.683181 -The maximum resident set size (KB) = 823728 +The total amount of wall time = 910.159993 +The maximum resident set size (KB) = 826636 -Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS +Test 075 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel -Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +Checking test 076 rrfs_smoke_conus13km_hrrr_warm_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 = 522.287990 -The maximum resident set size (KB) = 832444 +The total amount of wall time = 526.730567 +The maximum resident set size (KB) = 837124 -Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS +Test 076 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rrfs_conus13km_hrrr_warm_debug_intel -Checking test 081 rrfs_conus13km_hrrr_warm_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_conus13km_hrrr_warm_debug_intel +Checking test 077 rrfs_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 817.566801 -The maximum resident set size (KB) = 809300 +The total amount of wall time = 813.872450 +The maximum resident set size (KB) = 807620 -Test 081 rrfs_conus13km_hrrr_warm_debug_intel PASS +Test 077 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_CubedSphereGrid_debug_intel -Checking test 082 control_CubedSphereGrid_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_CubedSphereGrid_debug_intel +Checking test 078 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3106,349 +2926,349 @@ Checking test 082 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 158.624728 -The maximum resident set size (KB) = 676920 +The total amount of wall time = 158.250109 +The maximum resident set size (KB) = 673284 -Test 082 control_CubedSphereGrid_debug_intel PASS +Test 078 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 083 control_wrtGauss_netcdf_parallel_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/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 = 158.865936 -The maximum resident set size (KB) = 674368 +The total amount of wall time = 158.357449 +The maximum resident set size (KB) = 680252 -Test 083 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 079 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_stochy_debug_intel -Checking test 084 control_stochy_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/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 = 179.659080 -The maximum resident set size (KB) = 680356 +The total amount of wall time = 178.543599 +The maximum resident set size (KB) = 681756 -Test 084 control_stochy_debug_intel PASS +Test 080 control_stochy_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_lndp_debug_intel -Checking test 085 control_lndp_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/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 = 160.690310 -The maximum resident set size (KB) = 680104 +The total amount of wall time = 159.883641 +The maximum resident set size (KB) = 684020 -Test 085 control_lndp_debug_intel PASS +Test 081 control_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_csawmg_debug_intel -Checking test 086 control_csawmg_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/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 = 256.392895 -The maximum resident set size (KB) = 719084 +The total amount of wall time = 259.074108 +The maximum resident set size (KB) = 718396 -Test 086 control_csawmg_debug_intel PASS +Test 082 control_csawmg_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_csawmgt_debug_intel -Checking test 087 control_csawmgt_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/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 = 251.191633 -The maximum resident set size (KB) = 716568 +The total amount of wall time = 252.665209 +The maximum resident set size (KB) = 717980 -Test 087 control_csawmgt_debug_intel PASS +Test 083 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_ras_debug_intel -Checking test 088 control_ras_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/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 = 162.909879 -The maximum resident set size (KB) = 692920 +The total amount of wall time = 161.613702 +The maximum resident set size (KB) = 691508 -Test 088 control_ras_debug_intel PASS +Test 084 control_ras_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_diag_debug_intel -Checking test 089 control_diag_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/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 = 163.238938 -The maximum resident set size (KB) = 737864 +The total amount of wall time = 162.665661 +The maximum resident set size (KB) = 735160 -Test 089 control_diag_debug_intel PASS +Test 085 control_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_debug_p8_intel -Checking test 090 control_debug_p8_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/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 = 185.502125 -The maximum resident set size (KB) = 1496788 +The total amount of wall time = 189.651469 +The maximum resident set size (KB) = 1509780 -Test 090 control_debug_p8_intel PASS +Test 086 control_debug_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/regional_debug_intel -Checking test 091 regional_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/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 = 1044.278137 -The maximum resident set size (KB) = 675976 +The total amount of wall time = 1039.592460 +The maximum resident set size (KB) = 675400 -Test 091 regional_debug_intel PASS +Test 087 regional_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_control_debug_intel -Checking test 092 rap_control_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/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 = 298.571962 -The maximum resident set size (KB) = 1055488 +The total amount of wall time = 297.998683 +The maximum resident set size (KB) = 1051568 -Test 092 rap_control_debug_intel PASS +Test 088 rap_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hrrr_control_debug_intel -Checking test 093 hrrr_control_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/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 = 288.340292 -The maximum resident set size (KB) = 1053012 +The total amount of wall time = 289.950415 +The maximum resident set size (KB) = 1049284 -Test 093 hrrr_control_debug_intel PASS +Test 089 hrrr_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_unified_drag_suite_debug_intel -Checking test 094 rap_unified_drag_suite_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_unified_drag_suite_debug_intel +Checking test 090 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.646237 -The maximum resident set size (KB) = 1057632 +The total amount of wall time = 297.124472 +The maximum resident set size (KB) = 1051256 -Test 094 rap_unified_drag_suite_debug_intel PASS +Test 090 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_diag_debug_intel -Checking test 095 rap_diag_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_diag_debug_intel +Checking test 091 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.745338 -The maximum resident set size (KB) = 1139636 +The total amount of wall time = 308.200966 +The maximum resident set size (KB) = 1140272 -Test 095 rap_diag_debug_intel PASS +Test 091 rap_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_cires_ugwp_debug_intel -Checking test 096 rap_cires_ugwp_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_cires_ugwp_debug_intel +Checking test 092 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 = 304.437682 -The maximum resident set size (KB) = 1056572 +The total amount of wall time = 304.571034 +The maximum resident set size (KB) = 1056096 -Test 096 rap_cires_ugwp_debug_intel PASS +Test 092 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_unified_ugwp_debug_intel -Checking test 097 rap_unified_ugwp_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_unified_ugwp_debug_intel +Checking test 093 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.155396 -The maximum resident set size (KB) = 1051312 +The total amount of wall time = 305.646038 +The maximum resident set size (KB) = 1056208 -Test 097 rap_unified_ugwp_debug_intel PASS +Test 093 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_lndp_debug_intel -Checking test 098 rap_lndp_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_lndp_debug_intel +Checking test 094 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 = 299.297559 -The maximum resident set size (KB) = 1055548 +The total amount of wall time = 301.488584 +The maximum resident set size (KB) = 1053976 -Test 098 rap_lndp_debug_intel PASS +Test 094 rap_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_progcld_thompson_debug_intel -Checking test 099 rap_progcld_thompson_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_progcld_thompson_debug_intel +Checking test 095 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.388829 -The maximum resident set size (KB) = 1055008 +The total amount of wall time = 299.712919 +The maximum resident set size (KB) = 1053304 -Test 099 rap_progcld_thompson_debug_intel PASS +Test 095 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_noah_debug_intel -Checking test 100 rap_noah_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_noah_debug_intel +Checking test 096 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.035531 -The maximum resident set size (KB) = 1053144 +The total amount of wall time = 292.445915 +The maximum resident set size (KB) = 1053392 -Test 100 rap_noah_debug_intel PASS +Test 096 rap_noah_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_sfcdiff_debug_intel -Checking test 101 rap_sfcdiff_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_sfcdiff_debug_intel +Checking test 097 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.566471 -The maximum resident set size (KB) = 1056996 +The total amount of wall time = 298.689696 +The maximum resident set size (KB) = 1055476 -Test 101 rap_sfcdiff_debug_intel PASS +Test 097 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 098 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 = 562.748754 -The maximum resident set size (KB) = 1057148 +The total amount of wall time = 487.444942 +The maximum resident set size (KB) = 1055836 -Test 102 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 098 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rrfs_v1beta_debug_intel -Checking test 103 rrfs_v1beta_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_v1beta_debug_intel +Checking test 099 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 = 291.045266 -The maximum resident set size (KB) = 1052048 +The total amount of wall time = 291.788590 +The maximum resident set size (KB) = 1051580 -Test 103 rrfs_v1beta_debug_intel PASS +Test 099 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_clm_lake_debug_intel -Checking test 104 rap_clm_lake_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_clm_lake_debug_intel +Checking test 100 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 356.364007 -The maximum resident set size (KB) = 1056020 +The total amount of wall time = 357.070715 +The maximum resident set size (KB) = 1055112 -Test 104 rap_clm_lake_debug_intel PASS +Test 100 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_flake_debug_intel -Checking test 105 rap_flake_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_flake_debug_intel +Checking test 101 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.842297 -The maximum resident set size (KB) = 1055996 +The total amount of wall time = 298.893979 +The maximum resident set size (KB) = 1049724 -Test 105 rap_flake_debug_intel PASS +Test 101 rap_flake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_wam_debug_intel -Checking test 106 control_wam_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_wam_debug_intel +Checking test 102 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 294.963772 -The maximum resident set size (KB) = 303340 +The total amount of wall time = 295.622157 +The maximum resident set size (KB) = 307212 -Test 106 control_wam_debug_intel PASS +Test 102 control_wam_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 103 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3458,15 +3278,15 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 229.275619 -The maximum resident set size (KB) = 886560 +The total amount of wall time = 231.085511 +The maximum resident set size (KB) = 893224 -Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 103 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_control_dyn32_phy32_intel -Checking test 108 rap_control_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_control_dyn32_phy32_intel +Checking test 104 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3512,15 +3332,15 @@ Checking test 108 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 337.368855 -The maximum resident set size (KB) = 778184 +The total amount of wall time = 340.230993 +The maximum resident set size (KB) = 774736 -Test 108 rap_control_dyn32_phy32_intel PASS +Test 104 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hrrr_control_dyn32_phy32_intel -Checking test 109 hrrr_control_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hrrr_control_dyn32_phy32_intel +Checking test 105 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3566,15 +3386,15 @@ Checking test 109 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 179.688027 -The maximum resident set size (KB) = 778960 +The total amount of wall time = 180.857015 +The maximum resident set size (KB) = 771720 -Test 109 hrrr_control_dyn32_phy32_intel PASS +Test 105 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hrrr_control_qr_dyn32_phy32_intel -Checking test 110 hrrr_control_qr_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hrrr_control_qr_dyn32_phy32_intel +Checking test 106 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3620,15 +3440,15 @@ Checking test 110 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 175.758477 -The maximum resident set size (KB) = 786008 +The total amount of wall time = 180.611561 +The maximum resident set size (KB) = 779800 -Test 110 hrrr_control_qr_dyn32_phy32_intel PASS +Test 106 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_2threads_dyn32_phy32_intel -Checking test 111 rap_2threads_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_2threads_dyn32_phy32_intel +Checking test 107 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3674,15 +3494,15 @@ Checking test 111 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 306.631520 -The maximum resident set size (KB) = 829608 +The total amount of wall time = 308.506716 +The maximum resident set size (KB) = 829988 -Test 111 rap_2threads_dyn32_phy32_intel PASS +Test 107 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hrrr_control_2threads_dyn32_phy32_intel -Checking test 112 hrrr_control_2threads_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hrrr_control_2threads_dyn32_phy32_intel +Checking test 108 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3728,15 +3548,15 @@ Checking test 112 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 160.905510 -The maximum resident set size (KB) = 816096 +The total amount of wall time = 161.933623 +The maximum resident set size (KB) = 821784 -Test 112 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 108 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hrrr_control_decomp_dyn32_phy32_intel -Checking test 113 hrrr_control_decomp_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hrrr_control_decomp_dyn32_phy32_intel +Checking test 109 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3782,15 +3602,15 @@ Checking test 113 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 186.283894 -The maximum resident set size (KB) = 777360 +The total amount of wall time = 188.086192 +The maximum resident set size (KB) = 775492 -Test 113 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 109 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_restart_dyn32_phy32_intel -Checking test 114 rap_restart_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_restart_dyn32_phy32_intel +Checking test 110 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3828,42 +3648,112 @@ Checking test 114 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 248.008656 -The maximum resident set size (KB) = 607888 +The total amount of wall time = 248.714028 +The maximum resident set size (KB) = 608440 -Test 114 rap_restart_dyn32_phy32_intel PASS +Test 110 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hrrr_control_restart_dyn32_phy32_intel -Checking test 115 hrrr_control_restart_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/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 = 93.270315 -The maximum resident set size (KB) = 606672 +The total amount of wall time = 93.851990 +The maximum resident set size (KB) = 603772 -Test 115 hrrr_control_restart_dyn32_phy32_intel PASS +Test 111 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hrrr_control_restart_qr_dyn32_phy32_intel -Checking test 116 hrrr_control_restart_qr_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hrrr_control_restart_qr_dyn32_phy32_intel +Checking test 112 hrrr_control_restart_qr_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.732587 -The maximum resident set size (KB) = 625900 +The total amount of wall time = 94.541773 +The maximum resident set size (KB) = 622920 -Test 116 hrrr_control_restart_qr_dyn32_phy32_intel PASS +Test 112 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_fast_phy32_intel +Checking test 113 rrfs_smoke_conus13km_fast_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK + +The total amount of wall time = 134.492611 +The maximum resident set size (KB) = 719912 + +Test 113 rrfs_smoke_conus13km_fast_phy32_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_fast_phy32_qr_intel +Checking test 114 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK + +The total amount of wall time = 129.432572 +The maximum resident set size (KB) = 692820 + +Test 114 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +Checking test 115 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 87.785426 +The maximum resident set size (KB) = 725156 + +Test 115 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +Checking test 116 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 93.931126 +The maximum resident set size (KB) = 707532 + +Test 116 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_control_dyn64_phy32_intel Checking test 117 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3910,81 +3800,81 @@ Checking test 117 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 228.440077 -The maximum resident set size (KB) = 799912 +The total amount of wall time = 232.383941 +The maximum resident set size (KB) = 797724 Test 117 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_control_debug_dyn32_phy32_intel Checking test 118 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 = 303.432268 -The maximum resident set size (KB) = 940104 +The total amount of wall time = 291.991267 +The maximum resident set size (KB) = 935424 Test 118 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hrrr_control_debug_dyn32_phy32_intel Checking test 119 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 = 296.403599 -The maximum resident set size (KB) = 940816 +The total amount of wall time = 288.153874 +The maximum resident set size (KB) = 935276 Test 119 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/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 = 293.220866 -The maximum resident set size (KB) = 963880 +The total amount of wall time = 297.451081 +The maximum resident set size (KB) = 960972 Test 120 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hafs_regional_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/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 = 279.463984 -The maximum resident set size (KB) = 825476 +The total amount of wall time = 259.997132 +The maximum resident set size (KB) = 823076 Test 121 hafs_regional_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/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 = 375.772431 -The maximum resident set size (KB) = 1175868 +The total amount of wall time = 330.992155 +The maximum resident set size (KB) = 1182620 Test 122 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_atm_ocn_intel Checking test 123 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3993,14 +3883,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 = 407.080461 -The maximum resident set size (KB) = 856292 +The total amount of wall time = 389.467364 +The maximum resident set size (KB) = 860612 Test 123 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hafs_regional_atm_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_atm_wav_intel Checking test 124 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4009,14 +3899,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 = 734.259582 -The maximum resident set size (KB) = 886212 +The total amount of wall time = 713.119054 +The maximum resident set size (KB) = 890656 Test 124 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_atm_ocn_wav_intel Checking test 125 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4027,14 +3917,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 = 1000.554139 -The maximum resident set size (KB) = 909548 +The total amount of wall time = 903.698120 +The maximum resident set size (KB) = 914568 Test 125 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_1nest_atm_intel Checking test 126 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4056,14 +3946,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 = 421.884673 -The maximum resident set size (KB) = 392084 +The total amount of wall time = 309.670536 +The maximum resident set size (KB) = 396216 Test 126 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hafs_regional_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_1nest_atm_qr_intel Checking test 127 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4085,14 +3975,14 @@ Checking test 127 hafs_regional_1nest_atm_qr_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 = 405.059488 -The maximum resident set size (KB) = 372192 +The total amount of wall time = 336.935430 +The maximum resident set size (KB) = 373588 Test 127 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_telescopic_2nests_atm_intel Checking test 128 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4101,14 +3991,14 @@ Checking test 128 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 = 483.182677 -The maximum resident set size (KB) = 401976 +The total amount of wall time = 377.487757 +The maximum resident set size (KB) = 411396 Test 128 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hafs_global_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_global_1nest_atm_intel Checking test 129 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4155,14 +4045,14 @@ Checking test 129 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 = 279.926285 -The maximum resident set size (KB) = 263476 +The total amount of wall time = 162.010508 +The maximum resident set size (KB) = 290208 Test 129 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hafs_global_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_global_1nest_atm_qr_intel Checking test 130 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4209,14 +4099,14 @@ Checking test 130 hafs_global_1nest_atm_qr_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 = 252.623463 -The maximum resident set size (KB) = 283964 +The total amount of wall time = 172.935550 +The maximum resident set size (KB) = 273376 Test 130 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_global_multiple_4nests_atm_intel Checking test 131 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4298,14 +4188,14 @@ Checking test 131 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 = 591.355526 -The maximum resident set size (KB) = 344172 +The total amount of wall time = 464.871277 +The maximum resident set size (KB) = 345668 Test 131 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_global_multiple_4nests_atm_qr_intel Checking test 132 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4387,14 +4277,14 @@ Checking test 132 hafs_global_multiple_4nests_atm_qr_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 = 644.216317 -The maximum resident set size (KB) = 374604 +The total amount of wall time = 520.351477 +The maximum resident set size (KB) = 379300 Test 132 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_specified_moving_1nest_atm_intel Checking test 133 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4403,14 +4293,14 @@ Checking test 133 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 325.608268 -The maximum resident set size (KB) = 405580 +The total amount of wall time = 207.571719 +The maximum resident set size (KB) = 403932 Test 133 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_storm_following_1nest_atm_intel Checking test 134 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4432,14 +4322,14 @@ Checking test 134 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 317.789538 -The maximum resident set size (KB) = 413804 +The total amount of wall time = 195.358861 +The maximum resident set size (KB) = 409440 Test 134 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 135 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4461,14 +4351,14 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_qr_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 = 340.743937 -The maximum resident set size (KB) = 393504 +The total amount of wall time = 220.818357 +The maximum resident set size (KB) = 395508 Test 135 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4477,42 +4367,42 @@ Checking test 136 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 = 342.208951 -The maximum resident set size (KB) = 467988 +The total amount of wall time = 254.014342 +The maximum resident set size (KB) = 473612 Test 136 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_global_storm_following_1nest_atm_intel Checking test 137 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 = 168.025994 -The maximum resident set size (KB) = 281780 +The total amount of wall time = 82.610111 +The maximum resident set size (KB) = 287292 Test 137 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 821.638256 -The maximum resident set size (KB) = 494240 +The total amount of wall time = 806.846427 +The maximum resident set size (KB) = 493008 Test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4523,14 +4413,14 @@ Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 504.875045 -The maximum resident set size (KB) = 522796 +The total amount of wall time = 507.900776 +The maximum resident set size (KB) = 525608 Test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/control_p8_atmlnd_sbs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_p8_atmlnd_sbs_intel Checking test 140 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4615,14 +4505,14 @@ Checking test 140 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 = 235.358659 -The maximum resident set size (KB) = 1545832 +The total amount of wall time = 240.745521 +The maximum resident set size (KB) = 1543284 Test 140 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/atmaero_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/atmaero_control_p8_intel Checking test 141 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4666,14 +4556,14 @@ Checking test 141 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.813784 -The maximum resident set size (KB) = 2816088 +The total amount of wall time = 250.463193 +The maximum resident set size (KB) = 2815224 Test 141 atmaero_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/atmaero_control_p8_rad_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/atmaero_control_p8_rad_intel Checking test 142 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4717,14 +4607,14 @@ Checking test 142 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.878625 -The maximum resident set size (KB) = 2879172 +The total amount of wall time = 283.915162 +The maximum resident set size (KB) = 2881704 Test 142 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/atmaero_control_p8_rad_micro_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/atmaero_control_p8_rad_micro_intel Checking test 143 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4768,14 +4658,14 @@ Checking test 143 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.006566 -The maximum resident set size (KB) = 2887824 +The total amount of wall time = 290.910874 +The maximum resident set size (KB) = 2886704 Test 143 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/regional_atmaq_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_atmaq_intel Checking test 144 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4791,14 +4681,14 @@ Checking test 144 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 679.030714 -The maximum resident set size (KB) = 1263448 +The total amount of wall time = 689.083583 +The maximum resident set size (KB) = 1266000 Test 144 regional_atmaq_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230705/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_213398/regional_atmaq_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_atmaq_debug_intel Checking test 145 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4812,21 +4702,12 @@ Checking test 145 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 = 1294.455898 -The maximum resident set size (KB) = 1296080 +The total amount of wall time = 1306.130630 +The maximum resident set size (KB) = 1297692 Test 145 regional_atmaq_debug_intel PASS -FAILED TESTS: -059 hrrr_control_intel failed in check_result -hrrr_control_intel 059 failed in run_test -060 hrrr_control_qr_intel failed in check_result -hrrr_control_qr_intel 060 failed in run_test -061 hrrr_control_decomp_intel failed in check_result -hrrr_control_decomp_intel 061 failed in run_test -062 hrrr_control_2threads_intel failed in check_result -hrrr_control_2threads_intel 062 failed in run_test - -REGRESSION TEST FAILED -Thu Jul 6 19:23:16 UTC 2023 -Elapsed time: 01h:38m:25s. Have a nice day! + +REGRESSION TEST WAS SUCCESSFUL +Fri Jul 14 15:22:40 UTC 2023 +Elapsed time: 01h:49m:43s. Have a nice day! diff --git a/tests/parm/control.nml.IN b/tests/parm/control.nml.IN index 82ddffa9c5..3bceb82f31 100644 --- a/tests/parm/control.nml.IN +++ b/tests/parm/control.nml.IN @@ -165,6 +165,7 @@ deflate_level=1 iopt_tbot = 2 iopt_stc = 1 iopt_trs = 2 + iopt_diag = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. @@ -270,6 +271,7 @@ deflate_level=1 FNVEGC = 'global_vegfrac.0.144.decpercent.grb' FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] + FNSOCC = @[FNSOCC] FNSMCC = @[FNSMCC_control] FNMSKH = @[FNMSKH_control] FNTSFA = '' diff --git a/tests/parm/control_ca.nml.IN b/tests/parm/control_ca.nml.IN index 030cc369e2..6119ad7d21 100644 --- a/tests/parm/control_ca.nml.IN +++ b/tests/parm/control_ca.nml.IN @@ -163,6 +163,7 @@ deflate_level=1 iopt_tbot = 2 iopt_stc = 1 iopt_trs = 2 + iopt_diag = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. @@ -270,6 +271,7 @@ deflate_level=1 FNVEGC = 'global_vegfrac.0.144.decpercent.grb' FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] + FNSOCC = @[FNSOCC] FNSMCC = 'global_soilmgldas.statsgo.t1534.3072.1536.grb' FNMSKH = 'global_slmask.t1534.3072.1536.grb' FNTSFA = '' diff --git a/tests/parm/control_csawmg.nml.IN b/tests/parm/control_csawmg.nml.IN index acd04f7865..b96c803f80 100644 --- a/tests/parm/control_csawmg.nml.IN +++ b/tests/parm/control_csawmg.nml.IN @@ -159,6 +159,7 @@ deflate_level=1 iopt_tbot = 2 iopt_stc = 1 iopt_trs = 2 + iopt_diag = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. @@ -214,6 +215,7 @@ deflate_level=1 FNVEGC = 'global_vegfrac.0.144.decpercent.grb' FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] + FNSOCC = @[FNSOCC] FNSMCC = 'global_soilmgldas.statsgo.t1534.3072.1536.grb' FNMSKH = 'global_slmask.t1534.3072.1536.grb' FNTSFA = '' diff --git a/tests/parm/control_flake.nml.IN b/tests/parm/control_flake.nml.IN index 8855c40d72..b0e1b47288 100644 --- a/tests/parm/control_flake.nml.IN +++ b/tests/parm/control_flake.nml.IN @@ -167,6 +167,7 @@ deflate_level=1 iopt_tbot = 2 iopt_stc = 1 iopt_trs = 2 + iopt_diag = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. @@ -253,6 +254,7 @@ deflate_level=1 FNVEGC = 'global_vegfrac.0.144.decpercent.grb' FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] + FNSOCC = @[FNSOCC] FNSMCC = 'global_soilmgldas.statsgo.t1534.3072.1536.grb' FNMSKH = 'global_slmask.t1534.3072.1536.grb' FNTSFA = '' diff --git a/tests/parm/control_gdas.nml.IN b/tests/parm/control_gdas.nml.IN index c43e3a978b..7f52778e71 100644 --- a/tests/parm/control_gdas.nml.IN +++ b/tests/parm/control_gdas.nml.IN @@ -183,6 +183,7 @@ deflate_level=1 iopt_tbot = 2 iopt_stc = 1 iopt_trs = 2 + iopt_diag = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. @@ -276,6 +277,7 @@ deflate_level=1 FNVEGC = 'global_vegfrac.0.144.decpercent.grb' FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] + FNSOCC = @[FNSOCC] FNSMCC = 'global_soilmgldas.statsgo.t1534.3072.1536.grb' FNMSKH = 'global_slmask.t1534.3072.1536.grb' FNTSFA = ' ' diff --git a/tests/parm/control_gfsv17.nml.IN b/tests/parm/control_gfsv17.nml.IN index b472bc2505..5f72a8355c 100644 --- a/tests/parm/control_gfsv17.nml.IN +++ b/tests/parm/control_gfsv17.nml.IN @@ -166,6 +166,7 @@ deflate_level=1 iopt_tbot = 2 iopt_stc = 1 iopt_trs = 2 + iopt_diag = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. @@ -269,6 +270,7 @@ deflate_level=1 FNVEGC = 'global_vegfrac.0.144.decpercent.grb' FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] + FNSOCC = @[FNSOCC] FNSMCC = @[FNSMCC_control] FNMSKH = @[FNMSKH_control] FNTSFA = '' diff --git a/tests/parm/control_noahmp.nml.IN b/tests/parm/control_noahmp.nml.IN index 8afd9c8606..b9a03b7df4 100644 --- a/tests/parm/control_noahmp.nml.IN +++ b/tests/parm/control_noahmp.nml.IN @@ -161,6 +161,7 @@ deflate_level=1 iopt_tbot = 2 iopt_stc = 3 iopt_trs = 2 + iopt_diag = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. @@ -247,6 +248,7 @@ deflate_level=1 FNVEGC = 'global_vegfrac.0.144.decpercent.grb' FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] + FNSOCC = @[FNSOCC] FNSMCC = 'global_soilmgldas.statsgo.t1534.3072.1536.grb' FNMSKH = 'global_slmask.t1534.3072.1536.grb' FNTSFA = '' diff --git a/tests/parm/control_ugwpv1.nml.IN b/tests/parm/control_ugwpv1.nml.IN index 4864ec8149..91016fb8c3 100644 --- a/tests/parm/control_ugwpv1.nml.IN +++ b/tests/parm/control_ugwpv1.nml.IN @@ -161,6 +161,7 @@ deflate_level=1 iopt_tbot = 2 iopt_stc = 1 iopt_trs = 2 + iopt_diag = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. @@ -260,6 +261,7 @@ deflate_level=1 FNVEGC = 'global_vegfrac.0.144.decpercent.grb' FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] + FNSOCC = @[FNSOCC] FNSMCC = 'global_soilmgldas.statsgo.t1534.3072.1536.grb' FNMSKH = 'global_slmask.t1534.3072.1536.grb' FNTSFA = '' diff --git a/tests/parm/cpld_control.nml.IN b/tests/parm/cpld_control.nml.IN index 50e4824784..db846ff05a 100644 --- a/tests/parm/cpld_control.nml.IN +++ b/tests/parm/cpld_control.nml.IN @@ -191,6 +191,7 @@ deflate_level=1 iopt_run = 1 iopt_sfc = @[IOPT_SFC] iopt_trs = @[IOPT_TRS] + iopt_diag = @[IOPT_DIAG] iopt_frz = 1 iopt_inf = 1 iopt_rad = @[IOPT_RAD] @@ -330,6 +331,7 @@ deflate_level=1 FNVEGC = @[FNVEGC] FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] + FNSOCC = @[FNSOCC] FNSMCC = @[FNSMCC] FNMSKH = @[FNMSKH] FNTSFA = '' diff --git a/tests/parm/cpt.nml.IN b/tests/parm/cpt.nml.IN index 1db708b122..4e6f365376 100644 --- a/tests/parm/cpt.nml.IN +++ b/tests/parm/cpt.nml.IN @@ -154,6 +154,7 @@ iopt_tbot = 2 iopt_stc = 1 iopt_trs = 2 + iopt_diag = 2 oz_phys = .false. oz_phys_2015 = .true. debug = .false. @@ -263,6 +264,7 @@ FNVEGC = "global_vegfrac.0.144.decpercent.grb", FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] + FNSOCC = @[FNSOCC] FNSMCC = @[FNSMCC] FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", diff --git a/tests/parm/csawmg3shoc127.nml.IN b/tests/parm/csawmg3shoc127.nml.IN index 137187536a..e81a543ffa 100644 --- a/tests/parm/csawmg3shoc127.nml.IN +++ b/tests/parm/csawmg3shoc127.nml.IN @@ -155,6 +155,7 @@ iopt_tbot = 2 iopt_stc = 1 iopt_trs = 2 + iopt_diag = 2 debug = .false. ras = .false. @@ -213,6 +214,7 @@ FNVEGC = "global_vegfrac.0.144.decpercent.grb", FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] + FNSOCC = @[FNSOCC] FNSMCC = @[FNSMCC] FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", diff --git a/tests/parm/csawmgshoc.nml.IN b/tests/parm/csawmgshoc.nml.IN index c941ef2a19..f77a65c383 100644 --- a/tests/parm/csawmgshoc.nml.IN +++ b/tests/parm/csawmgshoc.nml.IN @@ -154,6 +154,7 @@ iopt_tbot = 2 iopt_stc = 1 iopt_trs = 2 + iopt_diag = 2 debug = .false. ras = .false. diff --git a/tests/parm/input_global_hafs.nml.IN b/tests/parm/input_global_hafs.nml.IN index e1164b45fb..67453fac29 100644 --- a/tests/parm/input_global_hafs.nml.IN +++ b/tests/parm/input_global_hafs.nml.IN @@ -213,6 +213,7 @@ iopt_tbot = 2 iopt_stc = 1 iopt_trs = 2 + iopt_diag = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. diff --git a/tests/parm/input_nest02.nml.IN b/tests/parm/input_nest02.nml.IN index b20e8ca6d2..5e99deb2ae 100644 --- a/tests/parm/input_nest02.nml.IN +++ b/tests/parm/input_nest02.nml.IN @@ -160,6 +160,7 @@ iopt_tbot = 2 iopt_stc = 1 iopt_trs = 2 + iopt_diag = 2 debug = .false. nstf_name = @[NSTF_NAME] xkzminv = 0.3 diff --git a/tests/parm/input_nest_hafs.nml.IN b/tests/parm/input_nest_hafs.nml.IN index 286a4155c4..4bc2435b4e 100644 --- a/tests/parm/input_nest_hafs.nml.IN +++ b/tests/parm/input_nest_hafs.nml.IN @@ -200,6 +200,7 @@ iopt_tbot = 2 iopt_stc = 1 iopt_trs = 2 + iopt_diag = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. diff --git a/tests/parm/input_regional_hafs.nml.IN b/tests/parm/input_regional_hafs.nml.IN index e801986dc1..7680dea358 100644 --- a/tests/parm/input_regional_hafs.nml.IN +++ b/tests/parm/input_regional_hafs.nml.IN @@ -224,6 +224,7 @@ iopt_tbot = 2 iopt_stc = 1 iopt_trs = 2 + iopt_diag = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. diff --git a/tests/parm/merra2_thompson.nml.IN b/tests/parm/merra2_thompson.nml.IN index f8aa4fc59c..fe0a87cd5c 100644 --- a/tests/parm/merra2_thompson.nml.IN +++ b/tests/parm/merra2_thompson.nml.IN @@ -191,6 +191,7 @@ deflate_level=1 iopt_run = 1 iopt_sfc = @[IOPT_SFC] iopt_trs = @[IOPT_TRS] + iopt_diag = @[IOPT_DIAG] iopt_frz = 1 iopt_inf = 1 iopt_rad = @[IOPT_RAD] @@ -328,6 +329,7 @@ deflate_level=1 FNVEGC = @[FNVEGC] FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] + FNSOCC = @[FNSOCC] FNSMCC = @[FNSMCC] FNMSKH = @[FNMSKH] FNTSFA = '' diff --git a/tests/parm/noahmptable.tbl b/tests/parm/noahmptable.tbl new file mode 100644 index 0000000000..3ffd5b5320 --- /dev/null +++ b/tests/parm/noahmptable.tbl @@ -0,0 +1,780 @@ +&noahmp_usgs_veg_categories + veg_dataset_description = "usgs" + nveg = 27 +/ +&noahmp_usgs_parameters + ! nveg = 27 + ! 1: urban and built-up land + ! 2: dryland cropland and pasture + ! 3: irrigated cropland and pasture + ! 4: mixed dryland/irrigated cropland and pasture + ! 5: cropland/grassland mosaic + ! 6: cropland/woodland mosaic + ! 7: grassland + ! 8: shrubland + ! 9: mixed shrubland/grassland + ! 10: savanna + ! 11: deciduous broadleaf forest + ! 12: deciduous needleleaf forest + ! 13: evergreen broadleaf forest + ! 14: evergreen needleleaf forest + ! 15: mixed forest + ! 16: water bodies + ! 17: herbaceous wetland + ! 18: wooded wetland + ! 19: barren or sparsely vegetated + ! 20: herbaceous tundra + ! 21: wooded tundra + ! 22: mixed tundra + ! 23: bare ground tundra + ! 24: snow or ice + ! 25: playa + ! 26: lava + ! 27: white sand + + isurban = 1 + iswater = 16 + isbarren = 19 + isice = 24 + iscrop = 2 + eblforest = 13 + natural = 5 + lcz_1 = 31 + lcz_2 = 32 + lcz_3 = 33 + lcz_4 = 34 + lcz_5 = 35 + lcz_6 = 36 + lcz_7 = 37 + lcz_8 = 38 + lcz_9 = 39 + lcz_10 = 40 + lcz_11 = 41 + + !--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + ! 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 + !--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + ch2op = 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + dleaf = 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, + z0mvt = 1.00, 0.15, 0.15, 0.15, 0.14, 0.50, 0.12, 0.06, 0.09, 0.50, 0.80, 0.85, 1.10, 1.09, 0.80, 0.00, 0.12, 0.50, 0.00, 0.10, 0.30, 0.20, 0.03, 0.00, 0.01, 0.00, 0.00, + hvt = 15.0, 2.00, 2.00, 2.00, 1.50, 8.00, 1.00, 1.10, 1.10, 10.0, 16.0, 18.0, 20.0, 20.0, 16.0, 0.00, 0.50, 10.0, 0.00, 0.50, 4.00, 2.00, 0.50, 0.00, 0.10, 0.00, 0.00, + hvb = 1.00, 0.10, 0.10, 0.10, 0.10, 0.15, 0.05, 0.10, 0.10, 0.10, 11.5, 7.00, 8.00, 8.50, 10.0, 0.00, 0.05, 0.10, 0.00, 0.10, 0.10, 0.10, 0.10, 0.00, 0.10, 0.00, 0.00, + z0mhvt= 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.00, 0.05, 0.05, 0.05, 0.05, 0.00, 0.05, 0.00, 0.00, + den = 0.01, 25.0, 25.0, 25.0, 25.0, 25.0, 100., 10.0, 10.0, 0.02, 0.10, 0.28, 0.02, 0.28, 0.10, 0.01, 10.0, 0.10, 0.01, 1.00, 1.00, 1.00, 1.00, 0.00, 0.01, 0.01, 0.01, + rc = 1.00, 0.08, 0.08, 0.08, 0.08, 0.08, 0.03, 0.12, 0.12, 3.00, 1.40, 1.20, 3.60, 1.20, 1.40, 0.01, 0.10, 1.40, 0.01, 0.30, 0.30, 0.30, 0.30, 0.00, 0.01, 0.01, 0.01, +!mfsno = 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, +! c. he 12/17/2020: optimized mfsno values dependent on land type based on evaluation with snotel swe and modis scf, surface albedo + mfsno = 4.00, 3.00, 3.00, 3.00, 4.00, 4.00, 2.00, 2.00, 2.00, 2.00, 1.00, 1.00, 1.00, 1.00, 1.00, 3.00, 3.00, 3.00, 3.00, 3.50, 3.50, 3.50, 3.50, 2.50, 3.50, 3.50, 3.50, +! c. he 12/17/2020: optimized snow cover factor (m) in scf formulation to replace original constant 2.5*z0,z0=0.002m, based on evaluation with snotel swe and modis scf, surface albedo + scffac= 0.042, 0.014, 0.014, 0.014, 0.026, 0.026, 0.020, 0.018, 0.016, 0.020, 0.008, 0.008, 0.008, 0.008, 0.008, 0.030, 0.020, 0.020, 0.016, 0.030, 0.030, 0.030, 0.030, 0.030, 0.030, 0.030, 0.030, + cbiom = 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, + + ! row 1: vis + ! row 2: near ir + rhol_vis=0.00, 0.11, 0.11, 0.11, 0.11, 0.11, 0.11, 0.07, 0.10, 0.10, 0.10, 0.07, 0.10, 0.07, 0.10, 0.00, 0.11, 0.10, 0.00, 0.10, 0.10, 0.10, 0.10, 0.00, 0.10, 0.00, 0.00, + rhol_nir=0.00, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.35, 0.45, 0.45, 0.45, 0.35, 0.45, 0.35, 0.45, 0.00, 0.58, 0.45, 0.00, 0.45, 0.45, 0.45, 0.45, 0.00, 0.45, 0.00, 0.00, + + ! row 1: vis + ! row 2: near ir + rhos_vis=0.00, 0.36, 0.36, 0.36, 0.36, 0.36, 0.36, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.00, 0.36, 0.16, 0.00, 0.16, 0.16, 0.16, 0.16, 0.00, 0.16, 0.00, 0.00, + rhos_nir=0.00, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.00, 0.58, 0.39, 0.00, 0.39, 0.39, 0.39, 0.39, 0.00, 0.39, 0.00, 0.00, + + ! row 1: vis + ! row 2: near ir + taul_vis=0.00, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.00, 0.07, 0.05, 0.00, 0.05, 0.05, 0.05, 0.05, 0.00, 0.05, 0.00, 0.00, + taul_nir=0.00, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.10, 0.10, 0.25, 0.25, 0.10, 0.25, 0.10, 0.25, 0.00, 0.25, 0.25, 0.00, 0.25, 0.25, 0.25, 0.25, 0.00, 0.25, 0.00, 0.00, + + ! row 1: vis + ! row 2: near ir + taus_vis=0.00, 0.220, 0.220, 0.220, 0.220, 0.220, 0.220, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.000, 0.220, 0.001, 0.000, 0.220, 0.001, 0.001, 0.001, 0.000, 0.001, 0.000, 0.000, + taus_nir=0.00, 0.380, 0.380, 0.380, 0.380, 0.380, 0.380, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.000, 0.380, 0.001, 0.000, 0.380, 0.001, 0.001, 0.001, 0.000, 0.001, 0.000, 0.000, + + xl = 0.000, -0.30, -0.30, -0.30, -0.30, -0.30, -0.30, 0.010, 0.250, 0.010, 0.250, 0.010, 0.010, 0.010, 0.250, 0.000, -0.30, 0.250, 0.000, -0.30, 0.250, 0.250, 0.250, 0.000, 0.250, 0.000, 0.000, + ! make cwpvt vegetation dependent according to j. goudriaan, crop micrometeorology: a simulation study (simulation monographs), 1977). c. he, 12/17/2020 + cwpvt = 0.18, 1.67, 1.67, 1.67, 1.67, 0.5, 5.0, 1.0, 2.0, 1.0, 0.67, 0.18, 0.67, 0.18, 0.29, 0.18, 1.67, 0.67, 0.18, 1.67, 0.67, 1.00, 0.18, 0.18, 0.18, 0.18, 0.18, + c3psn = 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + kc25 = 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, + akc = 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, + ko25 = 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, + ako = 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, + avcmx = 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, + aqe = 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + + ltovrc= 0.0, 1.2, 1.2, 1.2, 1.2, 1.30, 0.50, 0.65, 0.70, 0.65, 0.55, 0.2, 0.55, 0.5, 0.5, 0.0, 1.4, 1.4, 0.0, 1.2, 1.3, 1.4, 1.0, 0.0, 1.0, 0.0, 0.0, + dilefc= 0.00, 0.50, 0.50, 0.50, 0.35, 0.20, 0.20, 0.20, 0.50, 0.50, 0.60, 1.80, 0.50, 1.20, 0.80, 0.00, 0.40, 0.40, 0.00, 0.40, 0.30, 0.40, 0.30, 0.00, 0.30, 0.00, 0.00, + dilefw= 0.00, 0.20, 0.20, 0.20, 0.20, 0.20, 0.10, 0.20, 0.20, 0.50, 0.20, 0.20, 4.00, 0.20, 0.20, 0.00, 0.20, 0.20, 0.00, 0.20, 0.20, 0.20, 0.20, 0.00, 0.20, 0.00, 0.00, + rmf25 = 0.00, 1.00, 1.40, 1.45, 1.45, 1.45, 1.80, 0.26, 0.26, 0.80, 3.00, 4.00, 0.65, 3.00, 3.00, 0.00, 3.20, 3.20, 0.00, 3.20, 3.00, 3.00, 3.00, 0.00, 3.00, 0.00, 0.00, + sla = 60, 80, 80, 80, 80, 80, 60, 60, 60, 50, 80, 80, 80, 80, 80, 0, 80, 80, 0, 80, 80, 80, 80, 0, 80, 0, 0, + fragr = 0.00, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.10, 0.20, 0.10, 0.10, 0.00, 0.10, 0.10, 0.10, 0.10, 0.10, 0.10, 0.10, 0.00, 0.10, 0.00, 0.00, + tmin = 0, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 268, 273, 265, 268, 0, 268, 268, 0, 268, 268, 268, 268, 0, 268, 0, 0, + vcmx25= 0.00, 80.0, 80.0, 80.0, 60.0, 70.0, 40.0, 40.0, 40.0, 40.0, 60.0, 60.0, 60.0, 50.0, 55.0, 0.00, 50.0, 50.0, 0.00, 50.0, 50.0, 50.0, 50.0, 0.00, 50.0, 0.00, 0.00, + tdlef = 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 268, 278, 278, 268, 0, 268, 268, 0, 268, 268, 268, 268, 0, 268, 0, 0, + bp = 1.e15, 2.e3, 2.e3, 2.e3, 2.e3, 2.e3, 2.e3, 2.e3, 2.e3, 2.e3, 2.e3, 2.e3, 2.e3, 2.e3, 2.e3, 1.e15, 2.e3, 2.e3, 2.e3, 2.e3, 2.e3, 2.e3, 2.e3, 1.e15, 2.e3, 1.e15, 1.e15, + mp = 9., 9., 9., 9., 9., 9., 9., 9., 9., 9., 9., 6., 9., 6., 9., 9., 9., 9., 9., 9., 9., 9., 9., 9., 9., 9., 9., + qe25 = 0., 0.06, 0.06, 0.06, 0.06, 0.06, 0.06, 0.06, 0.06, 0.06, 0.06, 0.06, 0.06, 0.06, 0.06, 0.00, 0.06, 0.06, 0.06, 0.06, 0.06, 0.06, 0.06, 0.00, 0.06, 0.00, 0.00, + rms25 = 0.00, 0.10, 0.10, 0.10, 0.10, 0.10, 0.10, 0.10, 0.10, 0.32, 0.10, 0.64, 0.30, 0.90, 0.80, 0.00, 0.10, 0.10, 0.00, 0.10, 0.10, 0.10, 0.00, 0.00, 0.00, 0.00, 0.00, + rmr25 = 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 1.20, 0.00, 0.00, 0.01, 0.01, 0.05, 0.05, 0.36, 0.03, 0.00, 0.00, 0.00, 0.00, 2.11, 2.11, 2.11, 0.00, 0.00, 0.00, 0.00, 0.00, + arm = 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, + folnmx= 0.00, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 0.00, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 0.00, 1.5, 0.00, 0.00, + wdpool= 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 1.00, 1.00, 1.00, 1.00, 1.00, 1.00, 1.00, 1.00, 0.00, 0.00, 1.00, 0.00, 0.00, 1.00, 1.00, 0.00, 0.00, 0.00, 0.00, 0.00, + wrrat = 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 3.00, 3.00, 3.00, 30.0, 30.0, 30.0, 30.0, 30.0, 0.00, 0.00, 30.0, 0.00, 0.00, 3.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, + mrp = 0.00, 0.23, 0.23, 0.23, 0.23, 0.23, 0.17, 0.19, 0.19, 0.40, 0.40, 0.37, 0.23, 0.37, 0.30, 0.00, 0.17, 0.40, 0.00, 0.17, 0.23, 0.20, 0.00, 0.00, 0.20, 0.00, 0.00, + nroot = 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 0, 2, 2, 1, 3, 3, 3, 2, 1, 1, 0, 0, + rgl = 999.0, 100.0, 100.0, 100.0, 100.0, 65.0, 100.0, 100.0, 100.0, 65.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 100.0, 30.0, 999.0, 100.0, 100.0, 100.0, 100.0, 999.0, 100.0, 999.0, 999.0, + rs = 200.0, 40.0, 40.0, 40.0, 40.0, 70.0, 40.0, 300.0, 170.0, 70.0, 100.0, 150.0, 150.0, 125.0, 125.0, 100.0, 40.0, 100.0, 999.0, 150.0, 150.0, 150.0, 200.0, 999.0, 40.0, 999.0, 999.0, + hs = 999.0, 36.25, 36.25, 36.25, 36.25, 44.14, 36.35, 42.00, 39.18, 54.53, 54.53, 47.35, 41.69, 47.35, 51.93, 51.75, 60.00, 51.93, 999.0, 42.00, 42.00, 42.00, 42.00, 999.0, 36.25, 999.0, 999.0, + topt = 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, + rsmax = 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., + rtovrc = 2.e-8,2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, + rswoodc= 3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10,3.e-10, + bf = 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, + wstrc = 100.0,100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, + laimin = 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, + xsamin = 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, + +! monthly values, one row for each month: + sai_jan = 0.0, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.2, 0.2, 0.3, 0.4, 0.3, 0.5, 0.4, 0.4, 0.0, 0.2, 0.3, 0.0, 0.1, 0.2, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, + sai_feb = 0.0, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.2, 0.2, 0.3, 0.4, 0.3, 0.5, 0.4, 0.4, 0.0, 0.2, 0.3, 0.0, 0.1, 0.2, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, + sai_mar = 0.0, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.2, 0.2, 0.3, 0.4, 0.3, 0.5, 0.4, 0.4, 0.0, 0.2, 0.3, 0.0, 0.1, 0.2, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, + sai_apr = 0.0, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.2, 0.2, 0.3, 0.4, 0.4, 0.5, 0.3, 0.4, 0.0, 0.2, 0.3, 0.0, 0.1, 0.2, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, + sai_may = 0.0, 0.2, 0.2, 0.2, 0.3, 0.3, 0.3, 0.2, 0.2, 0.3, 0.4, 0.4, 0.5, 0.4, 0.4, 0.0, 0.3, 0.3, 0.0, 0.1, 0.2, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, + sai_jun = 0.0, 0.3, 0.3, 0.3, 0.4, 0.4, 0.4, 0.2, 0.3, 0.4, 0.4, 0.7, 0.5, 0.5, 0.4, 0.0, 0.4, 0.4, 0.0, 0.2, 0.2, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, + sai_jul = 0.0, 0.4, 0.4, 0.4, 0.6, 0.6, 0.8, 0.4, 0.6, 0.8, 0.9, 1.3, 0.5, 0.5, 0.7, 0.0, 0.6, 0.6, 0.0, 0.4, 0.4, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, + sai_aug = 0.0, 0.5, 0.5, 0.5, 0.9, 0.9, 1.3, 0.6, 0.9, 1.2, 1.2, 1.2, 0.5, 0.6, 0.8, 0.0, 0.9, 0.9, 0.0, 0.6, 0.6, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, + sai_sep = 0.0, 0.4, 0.4, 0.4, 0.7, 1.0, 1.1, 0.8, 1.0, 1.3, 1.6, 1.0, 0.5, 0.6, 1.0, 0.0, 0.7, 1.0, 0.0, 0.7, 0.8, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0, + sai_oct = 0.0, 0.3, 0.3, 0.3, 0.3, 0.8, 0.4, 0.7, 0.6, 0.7, 1.4, 0.8, 0.5, 0.7, 1.0, 0.0, 0.3, 0.8, 0.0, 0.5, 0.7, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, + sai_nov = 0.0, 0.3, 0.3, 0.3, 0.3, 0.4, 0.4, 0.3, 0.3, 0.4, 0.6, 0.6, 0.5, 0.6, 0.5, 0.0, 0.3, 0.4, 0.0, 0.3, 0.3, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, + sai_dec = 0.0, 0.3, 0.3, 0.3, 0.3, 0.3, 0.4, 0.2, 0.3, 0.4, 0.4, 0.5, 0.5, 0.5, 0.4, 0.0, 0.3, 0.4, 0.0, 0.2, 0.2, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, + + lai_jan = 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.4, 0.0, 0.2, 0.3, 0.0, 0.0, 4.5, 4.0, 2.0, 0.0, 0.2, 0.2, 0.0, 0.2, 1.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, + lai_feb = 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.3, 0.3, 0.0, 0.0, 4.5, 4.0, 2.0, 0.0, 0.3, 0.3, 0.0, 0.3, 1.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, + lai_mar = 0.0, 0.0, 0.0, 0.0, 0.3, 0.2, 0.6, 0.2, 0.4, 0.5, 0.3, 0.0, 4.5, 4.0, 2.2, 0.0, 0.3, 0.3, 0.0, 0.3, 1.1, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0, + lai_apr = 0.0, 0.0, 0.0, 0.0, 0.4, 0.6, 0.7, 0.6, 0.7, 0.8, 1.2, 0.6, 4.5, 4.0, 2.6, 0.0, 0.4, 0.6, 0.0, 0.4, 1.3, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, + lai_may = 0.0, 1.0, 1.0, 1.0, 1.1, 2.0, 1.2, 1.5, 1.4, 1.8, 3.0, 1.2, 4.5, 4.0, 3.5, 0.0, 1.1, 2.0, 0.0, 0.6, 1.7, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, + lai_jun = 0.0, 2.0, 2.0, 2.0, 2.5, 3.3, 3.0, 2.3, 2.6, 3.6, 4.7, 2.0, 4.5, 4.0, 4.3, 0.0, 2.5, 3.3, 0.0, 1.5, 2.1, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0, + lai_jul = 0.0, 3.0, 3.0, 3.0, 3.2, 3.7, 3.5, 2.3, 2.9, 3.8, 4.5, 2.6, 4.5, 4.0, 4.3, 0.0, 3.2, 3.7, 0.0, 1.7, 2.1, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0, + lai_aug = 0.0, 3.0, 3.0, 3.0, 2.2, 3.2, 1.5, 1.7, 1.6, 2.1, 3.4, 1.7, 4.5, 4.0, 3.7, 0.0, 2.2, 3.2, 0.0, 0.8, 1.8, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, + lai_sep = 0.0, 1.5, 1.5, 1.5, 1.1, 1.3, 0.7, 0.6, 0.7, 0.9, 1.2, 1.0, 4.5, 4.0, 2.6, 0.0, 1.1, 1.3, 0.0, 0.4, 1.3, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, + lai_oct = 0.0, 0.0, 0.0, 0.0, 0.3, 0.2, 0.6, 0.2, 0.4, 0.5, 0.3, 0.5, 4.5, 4.0, 2.2, 0.0, 0.3, 0.3, 0.0, 0.3, 1.1, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0, + lai_nov = 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.3, 0.3, 0.0, 0.2, 4.5, 4.0, 2.0, 0.0, 0.3, 0.3, 0.0, 0.2, 1.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, + lai_dec = 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.4, 0.0, 0.2, 0.3, 0.0, 0.0, 4.5, 4.0, 2.0, 0.0, 0.2, 0.2, 0.0, 0.2, 1.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, + +! five types, one row for each type (bvoc currently not active). + eps1 = 41.87, 0.00, 0.00, 2.52, 0.04, 17.11, 0.02, 21.62, 0.11, 22.80, 46.86, 0.00, 0.00, 0.46, 30.98, 2.31, 1.63, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + eps2 = 0.98, 0.00, 0.00, 0.16, 0.09, 0.28, 0.05, 0.92, 0.22, 0.59, 0.38, 0.00, 0.00, 3.34, 0.96, 1.47, 1.07, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + eps3 = 1.82, 0.00, 0.00, 0.23, 0.05, 0.81, 0.03, 1.73, 1.26, 1.37, 1.84, 0.00, 0.00, 1.85, 1.84, 1.70, 1.21, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + eps4 = 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + eps5 = 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, +/ + +&noahmp_modis_veg_categories + veg_dataset_description = "modified igbp modis noah" + nveg = 20 +/ + +&noahmp_modis_parameters +! 1 'evergreen needleleaf forest' -> usgs 14 +! 2, 'evergreen broadleaf forest' -> usgs 13 +! 3, 'deciduous needleleaf forest' -> usgs 12 +! 4, 'deciduous broadleaf forest' -> usgs 11 +! 5, 'mixed forests' -> usgs 15 +! 6, 'closed shrublands' -> usgs 8 "shrubland" +! 7, 'open shrublands' -> usgs 9 "shrubland/grassland" +! 8, 'woody savannas' -> usgs 8 "shrubland" +! 9, 'savannas' -> usgs 10 +! 10, 'grasslands' -> usgs 7 +! 11 'permanent wetlands' -> avg of usgs 17 and 18 (herb. wooded wetland) +! 12, 'croplands' -> usgs 2 "dryland cropland" +! 13, 'urban and built-up' -> usgs 1 +! 14 'cropland/natural vegetation mosaic' -> usgs 5 "cropland/grassland" +! 15, 'snow and ice' -> usgs 24 +! 16, 'barren or sparsely vegetated' -> usgs 19 +! 17, 'water' -> usgs 16 +! 18, 'wooded tundra' -> usgs 21 +! 19, 'mixed tundra' -> usgs 22 +! 20, 'barren tundra' -> usgs 23 + + isurban = 13 + iswater = 17 + isbarren = 16 + isice = 15 + iscrop = 12 + eblforest = 2 + natural = 14 + lcz_1 = 31 + lcz_2 = 32 + lcz_3 = 33 + lcz_4 = 34 + lcz_5 = 35 + lcz_6 = 36 + lcz_7 = 37 + lcz_8 = 38 + lcz_9 = 39 + lcz_10 = 40 + lcz_11 = 41 + !--------------------------------------------------------------------------------------------------------------------------------------------------------------------- + ! 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 + !--------------------------------------------------------------------------------------------------------------------------------------------------------------------- + ch2op = 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + dleaf = 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, + z0mvt = 1.09, 1.10, 0.85, 0.80, 0.80, 0.20, 0.06, 0.60, 0.50, 0.12, 0.30, 0.15, 1.00, 0.14, 0.00, 0.00, 0.00, 0.30, 0.20, 0.03, + hvt = 20.0, 20.0, 18.0, 16.0, 16.0, 1.10, 1.10, 13.0, 10.0, 1.00, 5.00, 2.00, 15.0, 1.50, 0.00, 0.00, 0.00, 4.00, 2.00, 0.50, + hvb = 8.50, 8.00, 7.00, 11.5, 10.0, 0.10, 0.10, 0.10, 0.10, 0.05, 0.10, 0.10, 1.00, 0.10, 0.00, 0.00, 0.00, 0.30, 0.20, 0.10, + z0mhvt= 0.0545, 0.055, 0.047, 0.050, 0.050, 0.182, 0.0545, 0.046, 0.050, 0.120, 0.060, 0.075, 0.067, 0.093, 0.000, 0.000, 0.000, 0.075, 0.100, 0.060, + den = 0.28, 0.02, 0.28, 0.10, 0.10, 10.0, 10.0, 10.0, 0.02, 100., 5.05, 25.0, 0.01, 25.0, 0.00, 0.01, 0.01, 1.00, 1.00, 1.00, + rc = 1.20, 3.60, 1.20, 1.40, 1.40, 0.12, 0.12, 0.12, 3.00, 0.03, 0.75, 0.08, 1.00, 0.08, 0.00, 0.01, 0.01, 0.30, 0.30, 0.30, +!mfsno = 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, +! c. he 12/17/2020: optimized mfsno values dependent on land type based on evaluation with snotel swe and modis scf, surface albedo + mfsno = 1.00, 1.00, 1.00, 1.00, 1.00, 2.00, 2.00, 2.00, 2.00, 2.00, 3.00, 3.00, 4.00, 4.00, 2.50, 3.00, 3.00, 3.50, 3.50, 3.50, +! c. he 12/17/2020: optimized snow cover factor (m) in scf formulation to replace original constant 2.5*z0,z0=0.002m, based on evaluation with snotel swe and modis scf, surface albedo +! scffac = 0.008, 0.008, 0.008, 0.008, 0.008, 0.016, 0.016, 0.020, 0.020, 0.020, 0.020, 0.014, 0.042, 0.026, 0.030, 0.016, 0.030, 0.030, 0.030, 0.030, + scffac = 0.005, 0.005, 0.005, 0.005, 0.005, 0.008, 0.008, 0.010, 0.010, 0.010, 0.010, 0.007, 0.021, 0.013, 0.015, 0.008, 0.015, 0.015, 0.015, 0.015, + cbiom = 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, + + ! row 1: vis + ! row 2: near ir + rhol_vis=0.07, 0.10, 0.07, 0.10, 0.10, 0.07, 0.07, 0.07, 0.10, 0.11, 0.105, 0.11, 0.00, 0.11, 0.00, 0.00, 0.00, 0.10, 0.10, 0.10, + rhol_nir=0.35, 0.45, 0.35, 0.45, 0.45, 0.35, 0.35, 0.35, 0.45, 0.58, 0.515, 0.58, 0.00, 0.58, 0.00, 0.00, 0.00, 0.45, 0.45, 0.45, + + ! row 1: vis + ! row 2: near ir + rhos_vis=0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.36, 0.26, 0.36, 0.00, 0.36, 0.00, 0.00, 0.00, 0.16, 0.16, 0.16, + rhos_nir=0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.58, 0.485, 0.58, 0.00, 0.58, 0.00, 0.00, 0.00, 0.39, 0.39, 0.39, + + ! row 1: vis + ! row 2: near ir + taul_vis=0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.07, 0.06, 0.07, 0.00, 0.07, 0.00, 0.00, 0.00, 0.05, 0.05, 0.05, + taul_nir=0.10, 0.25, 0.10, 0.25, 0.25, 0.10, 0.10, 0.10, 0.25, 0.25, 0.25, 0.25, 0.00, 0.25, 0.00, 0.00, 0.00, 0.25, 0.25, 0.25, + + ! row 1: vis + ! row 2: near ir + taus_vis=0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.220, 0.1105, 0.220, 0.000, 0.220, 0.000, 0.000, 0.000, 0.001, 0.001, 0.001, + taus_nir=0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.380, 0.1905, 0.380, 0.000, 0.380, 0.000, 0.000, 0.000, 0.001, 0.001, 0.001, + + xl = 0.010, 0.010, 0.010, 0.250, 0.250, 0.010, 0.010, 0.010, 0.010, -0.30, -0.025, -0.30, 0.000, -0.30, 0.000, 0.000, 0.000, 0.250, 0.250, 0.250, +! make cwpvt vegetation dependent according to j. goudriaan, crop micrometeorology: a simulation study (simulation monographs), 1977). c. he, 12/17/2020 +! cwpvt = 0.18, 0.67, 0.18, 0.67, 0.29, 1.0, 2.0, 1.3, 1.0, 5.0, 1.17, 1.67, 1.67, 1.67, 0.18, 0.18, 0.18, 0.67, 1.0, 0.18, + cwpvt = 0.09, 0.335, 0.09, 0.335, 0.145, 0.5, 1.0, 0.65, 0.5, 2.5, 0.585, 0.835, 0.835, 0.835, 0.09, 0.09, 0.09, 0.335, 0.5, 0.09, + c3psn = 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + kc25 = 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, + akc = 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, 2.1, + ko25 = 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, + ako = 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, + avcmx = 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, 2.4, + aqe = 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, + + ltovrc= 0.5, 0.55, 0.2, 0.55, 0.5, 0.65, 0.65, 0.65, 0.65, 0.50, 1.4, 1.6, 0.0, 1.2, 0.0, 0.0, 0.0, 1.3, 1.4, 1.0, + dilefc= 1.20, 0.50, 1.80, 0.60, 0.80, 0.20, 0.20, 0.20, 0.50, 0.20, 0.4, 0.50, 0.00, 0.35, 0.00, 0.00, 0.00, 0.30, 0.40, 0.30, + dilefw= 0.20, 4.00, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.50, 0.10, 0.2, 0.20, 0.00, 0.20, 0.00, 0.00, 0.00, 0.20, 0.20, 0.20, + rmf25 = 3.00, 0.65, 4.00, 3.00, 3.00, 0.26, 0.26, 0.26, 0.80, 1.80, 3.2, 1.00, 0.00, 1.45, 0.00, 0.00, 0.00, 3.00, 3.00, 3.00, + sla = 80, 80, 80, 80, 80, 60, 60, 60, 50, 60, 80, 80, 60, 80, 0, 0, 0, 80, 80, 80, + fragr = 0.10, 0.20, 0.10, 0.20, 0.10, 0.20, 0.20, 0.20, 0.20, 0.20, 0.1, 0.20, 0.00, 0.20, 0.00, 0.10, 0.00, 0.10, 0.10, 0.10, + tmin = 265, 273, 268, 273, 268, 273, 273, 273, 273, 273, 268, 273, 0, 273, 0, 0, 0, 268, 268, 268, + vcmx25= 50.0, 60.0, 60.0, 60.0, 55.0, 40.0, 40.0, 40.0, 40.0, 40.0, 50.0, 80.0, 0.00, 60.0, 0.00, 0.00, 0.00, 50.0, 50.0, 50.0, + tdlef = 278, 278, 268, 278, 268, 278, 278, 278, 278, 278, 268, 278, 278, 278, 0, 0, 0, 268, 268, 268, + bp = 2.e3, 2.e3, 2.e3, 2.e3, 2.e3, 2.e3, 2.e3, 2.e3, 2.e3, 2.e3, 2.e3, 2.e3, 1.e15, 2.e3, 1.e15, 2.e3, 1.e15, 2.e3, 2.e3, 2.e3, + mp = 6., 9., 6., 9., 9., 9., 9., 9., 9., 9., 9., 9., 9., 9., 9., 9., 9., 9., 9., 9., + qe25 = 0.06, 0.06, 0.06, 0.06, 0.06, 0.06, 0.06, 0.06, 0.06, 0.06, 0.06, 0.06, 0.00, 0.06, 0.00, 0.06, 0.00, 0.06, 0.06, 0.06, + rms25 = 0.90, 0.30, 0.64, 0.10, 0.80, 0.10, 0.10, 0.10, 0.32, 0.10, 0.10, 0.10, 0.00, 0.10, 0.00, 0.00, 0.00, 0.10, 0.10, 0.00, + rmr25 = 0.36, 0.05, 0.05, 0.01, 0.03, 0.00, 0.00, 0.00, 0.01, 1.20, 0.0, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 2.11, 2.11, 0.00, + arm = 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, + folnmx= 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 0.00, 1.5, 0.00, 1.5, 0.00, 1.5, 1.5, 1.5, + wdpool= 1.00, 1.00, 1.00, 1.00, 1.00, 1.00, 1.00, 1.00, 1.00, 0.00, 0.5, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 1.00, 1.00, 0.00, + wrrat = 30.0, 30.0, 30.0, 30.0, 30.0, 3.00, 3.00, 3.00, 3.00, 0.00, 15.0, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 3.00, 3.00, 0.00, + mrp = 0.37, 0.23, 0.37, 0.40, 0.30, 0.19, 0.19, 0.19, 0.40, 0.17, 0.285, 0.23, 0.00, 0.23, 0.00, 0.00, 0.00, 0.23, 0.20, 0.00, + nroot = 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 2, 3, 1, 3, 1, 1, 0, 3, 3, 2, + rgl = 30.0, 30.0, 30.0, 30.0, 30.0, 100.0, 100.0, 100.0, 65.0, 100.0, 65.0, 100.0, 999.0, 100.0, 999.0, 999.0, 30.0, 100.0, 100.0, 100.0, + rs = 125.0, 150.0, 150.0, 100.0, 125.0, 300.0, 170.0, 300.0, 70.0, 40.0, 70.0, 40.0, 200.0, 40.0, 999.0, 999.0, 100.0, 150.0, 150.0, 200.0, + hs = 47.35, 41.69, 47.35, 54.53, 51.93, 42.00, 39.18, 42.00, 54.53, 36.35, 55.97, 36.25, 999.0, 36.25, 999.0, 999.0, 51.75, 42.00, 42.00, 42.00, + topt = 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, 298.0, + rsmax = 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., 5000., + rtovrc = 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, 2.e-8, + rswoodc= 3.e-10,3.e-10,3.e-10, 3.e-10, 3.e-10, 3.e-10, 3.e-10, 3.e-10, 3.e-10, 3.e-10, 3.e-10, 3.e-10, 3.e-10, 3.e-10, 3.e-10, 3.e-10, 3.e-10, 3.e-10, 3.e-10, 3.e-10, + bf = 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, + wstrc = 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, + laimin = 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, + xsamin = 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, + +! monthly values, one row for each month: + sai_jan = 0.4, 0.5, 0.3, 0.4, 0.4, 0.3, 0.2, 0.4, 0.3, 0.3, 0.3, 0.3, 0.0, 0.3, 0.0, 0.0, 0.0, 0.2, 0.1, 0.0, + sai_feb = 0.4, 0.5, 0.3, 0.4, 0.4, 0.3, 0.2, 0.4, 0.3, 0.3, 0.3, 0.3, 0.0, 0.3, 0.0, 0.0, 0.0, 0.2, 0.1, 0.0, + sai_mar = 0.4, 0.5, 0.3, 0.4, 0.4, 0.3, 0.2, 0.4, 0.3, 0.3, 0.3, 0.3, 0.0, 0.3, 0.0, 0.0, 0.0, 0.2, 0.1, 0.0, + sai_apr = 0.3, 0.5, 0.4, 0.4, 0.4, 0.3, 0.2, 0.4, 0.3, 0.3, 0.3, 0.3, 0.0, 0.3, 0.0, 0.0, 0.0, 0.2, 0.1, 0.0, + sai_may = 0.4, 0.5, 0.4, 0.4, 0.4, 0.3, 0.2, 0.4, 0.3, 0.3, 0.3, 0.3, 0.0, 0.3, 0.0, 0.0, 0.0, 0.2, 0.1, 0.0, + sai_jun = 0.5, 0.5, 0.7, 0.4, 0.4, 0.3, 0.2, 0.4, 0.4, 0.4, 0.4, 0.3, 0.0, 0.4, 0.0, 0.0, 0.0, 0.2, 0.2, 0.0, + sai_jul = 0.5, 0.5, 1.3, 0.9, 0.7, 0.6, 0.4, 0.7, 0.8, 0.8, 0.6, 0.4, 0.0, 0.6, 0.0, 0.0, 0.0, 0.4, 0.4, 0.0, + sai_aug = 0.6, 0.5, 1.2, 1.2, 0.8, 0.9, 0.6, 1.2, 1.2, 1.3, 0.9, 0.5, 0.0, 0.9, 0.0, 0.0, 0.0, 0.6, 0.6, 0.0, + sai_sep = 0.6, 0.5, 1.0, 1.6, 1.0, 1.2, 0.8, 1.4, 1.3, 1.1, 0.9, 0.4, 0.0, 0.7, 0.0, 0.0, 0.0, 0.8, 0.7, 0.0, + sai_oct = 0.7, 0.5, 0.8, 1.4, 1.0, 0.9, 0.7, 1.1, 0.7, 0.4, 0.6, 0.3, 0.0, 0.3, 0.0, 0.0, 0.0, 0.7, 0.5, 0.0, + sai_nov = 0.6, 0.5, 0.6, 0.6, 0.5, 0.4, 0.3, 0.5, 0.4, 0.4, 0.4, 0.3, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3, 0.3, 0.0, + sai_dec = 0.5, 0.5, 0.5, 0.4, 0.4, 0.3, 0.2, 0.4, 0.4, 0.4, 0.3, 0.3, 0.0, 0.3, 0.0, 0.0, 0.0, 0.2, 0.2, 0.0, + + lai_jan = 4.0, 4.5, 0.0, 0.0, 2.0, 0.0, 0.0, 0.2, 0.3, 0.4, 0.2, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, + lai_feb = 4.0, 4.5, 0.0, 0.0, 2.0, 0.0, 0.0, 0.2, 0.3, 0.5, 0.3, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, + lai_mar = 4.0, 4.5, 0.0, 0.3, 2.2, 0.3, 0.2, 0.4, 0.5, 0.6, 0.3, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 1.1, 0.7, 0.0, + lai_apr = 4.0, 4.5, 0.6, 1.2, 2.6, 0.9, 0.6, 1.0, 0.8, 0.7, 0.5, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 1.3, 0.8, 0.0, + lai_may = 4.0, 4.5, 1.2, 3.0, 3.5, 2.2, 1.5, 2.4, 1.8, 1.2, 1.5, 1.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.7, 1.2, 0.0, + lai_jun = 4.0, 4.5, 2.0, 4.7, 4.3, 3.5, 2.3, 4.1, 3.6, 3.0, 2.9, 2.0, 0.0, 2.5, 0.0, 0.0, 0.0, 2.1, 1.8, 0.0, + lai_jul = 4.0, 4.5, 2.6, 4.5, 4.3, 3.5, 2.3, 4.1, 3.8, 3.5, 3.5, 3.0, 0.0, 3.2, 0.0, 0.0, 0.0, 2.1, 1.8, 0.0, + lai_aug = 4.0, 4.5, 1.7, 3.4, 3.7, 2.5, 1.7, 2.7, 2.1, 1.5, 2.7, 3.0, 0.0, 2.2, 0.0, 0.0, 0.0, 1.8, 1.3, 0.0, + lai_sep = 4.0, 4.5, 1.0, 1.2, 2.6, 0.9, 0.6, 1.0, 0.9, 0.7, 1.2, 1.5, 0.0, 1.1, 0.0, 0.0, 0.0, 1.3, 0.8, 0.0, + lai_oct = 4.0, 4.5, 0.5, 0.3, 2.2, 0.3, 0.2, 0.4, 0.5, 0.6, 0.3, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 1.1, 0.7, 0.0, + lai_nov = 4.0, 4.5, 0.2, 0.0, 2.0, 0.0, 0.0, 0.2, 0.3, 0.5, 0.3, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, + lai_dec = 4.0, 4.5, 0.0, 0.0, 2.0, 0.0, 0.0, 0.2, 0.3, 0.4, 0.2, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, + +! five types, one row for each type (bvoc currently not active). + eps1 = 0.46, 0.00, 0.00, 46.86, 30.98, 21.62, 0.11, 21.62, 22.80, 0.02, 0.815, 0.00, 41.87, 0.04, 0.0, 0.0, 2.31, 0.0, 0.0, 0.0, + eps2 = 3.34, 0.00, 0.00, 0.38, 0.96, 0.92, 0.22, 0.92, 0.59, 0.05, 0.535, 0.00, 0.98, 0.09, 0.0, 0.0, 1.47, 0.0, 0.0, 0.0, + eps3 = 1.85, 0.00, 0.00, 1.84, 1.84, 1.73, 1.26, 1.73, 1.37, 0.03, 0.605, 0.00, 1.82, 0.05, 0.0, 0.0, 1.70, 0.0, 0.0, 0.0, + eps4 = 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + eps5 = 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + +/ + +&noahmp_rad_parameters + !-------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + ! 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 soil color index for soil albedo + !-------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + albsat_vis = 0.25, 0.23, 0.21, 0.20, 0.19, 0.18, 0.17, 0.16, 0.15, 0.14, 0.13, 0.12, 0.11, 0.10, 0.09, 0.08, 0.07, 0.06, 0.05, 0.04 ! saturated soil albedos + albsat_nir = 0.50, 0.46, 0.42, 0.40, 0.38, 0.36, 0.34, 0.32, 0.30, 0.28, 0.26, 0.24, 0.22, 0.20, 0.18, 0.16, 0.14, 0.12, 0.10, 0.08 ! saturated soil albedos + albdry_vis = 0.36, 0.34, 0.32, 0.31, 0.30, 0.29, 0.28, 0.27, 0.26, 0.25, 0.24, 0.23, 0.22, 0.20, 0.18, 0.16, 0.14, 0.12, 0.10, 0.08 ! dry soil albedos + albdry_nir = 0.61, 0.57, 0.53, 0.51, 0.49, 0.48, 0.45, 0.43, 0.41, 0.39, 0.37, 0.35, 0.33, 0.31, 0.29, 0.27, 0.25, 0.23, 0.21, 0.16 ! dry soil albedos + albice = 0.80, 0.55 ! albedo land ice: 1=vis, 2=nir + alblak = 0.60, 0.40 ! albedo frozen lakes: 1=vis, 2=nir + omegas = 0.8 , 0.4 ! two-stream parameter omega for snow + betads = 0.5 ! two-stream parameter betad for snow + betais = 0.5 ! two-stream parameter betai for snow + eg = 0.97, 0.98 ! emissivity soil surface 1-soil;2-lake + eice = 0.98 ! emissivity ice surface +/ + +&noahmp_global_parameters + +! atmospheric constituants + + co2 = 395.e-06 !co2 partial pressure + o2 = 0.209 !o2 partial pressure + +! runoff parameters used for simtop and simgm: + + timean = 10.5 !gridcell mean topgraphic index (global mean) + fsatmx = 0.38 !maximum surface saturated fraction (global mean) + +! adjustable parameters for snow processes + + z0sno = 0.002 !snow surface roughness length (m) (0.002) + ssi = 0.03 !liquid water holding capacity for snowpack (m3/m3) (0.03) + snow_ret_fac = 5.e-5 !snowpack water release timescale factor (1/s) + snow_emis = 0.95 !snow emissivity (bring from hard-coded value of 1.0 to here) + swemx = 1.00 !new snow mass to fully cover old snow (mm) + !equivalent to 10mm depth (density = 100 kg/m3) + tau0 = 1.e6 !tau0 from yang97 eqn. 10a + grain_growth = 5000. !growth from vapor diffusion yang97 eqn. 10b + extra_growth = 10. !extra growth near freezing yang97 eqn. 10c + dirt_soot = 0.3 !dirt and soot term yang97 eqn. 10d + bats_cosz = 2.0 !zenith angle snow albedo adjustment; b in yang97 eqn. 15 + bats_vis_new = 0.95 !new snow visible albedo + bats_nir_new = 0.65 !new snow nir albedo + bats_vis_age = 0.2 !age factor for diffuse visible snow albedo yang97 eqn. 17 + bats_nir_age = 0.5 !age factor for diffuse nir snow albedo yang97 eqn. 18 + bats_vis_dir = 0.4 !cosz factor for direct visible snow albedo yang97 eqn. 15 + bats_nir_dir = 0.4 !cosz factor for direct nir snow albedo yang97 eqn. 16 + rsurf_snow = 50.0 !surface resistence for snow [s/m] + rsurf_exp = 5.0 !exponent in the shape parameter for soil resistance option 1 + c2_snowcompact = 21.e-3 !overburden snow compaction parameter (m3/kg) cenlin + c3_snowcompact = 2.5e-6 !snow desctructive metamorphism compaction parameter1 [1/s] cenlin + c4_snowcompact = 0.04 !snow desctructive metamorphism compaction parameter2 [1/k] cenlin + c5_snowcompact = 2.0 !snow desctructive metamorphism compaction parameter3 cenlin + dm_snowcompact = 100.0 !upper limit on destructive metamorphism compaction [kg/m3] cenlin + eta0_snowcompact = 0.8e+6 !snow viscosity coefficient [kg-s/m2], anderson1979: 0.52e6~1.38e6 cenlin + snliqmaxfrac = 0.4 !maximum liquid water fraction in snow cenlin + swemaxgla = 5000.0 ! maximum swe allowed at glaciers (mm) cenlin + wslmax = 5000.0 ! maximum lake water storage (mm) cenlin + rous = 0.20 ! specific yield [-] for niu et al. 2007 groundwater scheme (optrunoffsubsurface=1) + cmic = 0.20 ! microprore content (0.0-1.0), 0.0: close to free drainage + snowden_max = 120.0 ! maximum fresh snowfall density (kg/m3) + class_alb_ref = 0.55 ! reference snow albedo in class scheme + class_sno_age = 3600.0 ! snow aging e-folding time (s) in class albedo scheme + class_alb_new = 0.84 ! fresh snow albedo in class scheme + psiwlt = -150.0 !metric potential for wilting point (m) + z0soil = 0.002 ! bare-soil roughness length (m) (i.e., under the canopy) + z0lake = 0.01 ! lake surface roughness length (m) +/ + +&noahmp_irrigation_parameters +irr_frac = 0.10 ! irrigation fraction +irr_har = 20 ! number of days before harvest date to stop irrigation +irr_lai = 0.50 ! minimum lai to trigger irrigation +irr_mad = 0.60 ! management allowable deficit (0-1) +filoss = 0.10 ! fraction of flood irrigation loss (0-1) +sprir_rate = 6.40 ! mm/h, sprinkler irrigation rate +micir_rate = 1.38 ! mm/h, micro irrigation rate +firtfac = 1.00 ! flood application rate factor +ir_rain = 1.00 ! maximum precipitation [mm/hr] to stop irrigation trigger +/ + +&noahmp_crop_parameters + + ! ncrop = 5 + ! 1: corn + ! 2: soybean + ! 3: sorghum + ! 4: rice + ! 5: winter wheat + +default_crop = 0 ! the default crop type(1-5); if zero, use generic dynamic vegetation + +!---------------------------------------------------------- +! 1 2 3 4 5 +!---------------------------------------------------------- + +pltday = 111, 131, 111, 111, 111, ! planting date +hsday = 300, 280, 300, 300, 300, ! harvest date +plantpop = 78.0, 78.0, 78.0, 78.0, 78.0, ! plant density [per ha] - used? +gddtbase = 10.0, 10.0, 10.0, 10.0, 10.0, ! base temperature for gdd accumulation [c] +gddtcut = 30.0, 30.0, 30.0, 30.0, 30.0, ! upper temperature for gdd accumulation [c] +gdds1 = 50.0, 60.0, 50.0, 50.0, 50.0, ! gdd from seeding to emergence +gdds2 = 625.0, 675.0, 718.0, 718.0, 718.0, ! gdd from seeding to initial vegetative +gdds3 = 933.0, 1183.0, 933.0, 933.0, 933.0, ! gdd from seeding to post vegetative +gdds4 = 1103.0, 1253.0, 1103.0, 1103.0, 1103.0, ! gdd from seeding to intial reproductive +gdds5 = 1555.0, 1605.0, 1555.0, 1555.0, 1555.0, ! gdd from seeding to pysical maturity +c3psni = 0.0, 1.0, 1.0, 1.0, 1.0, ! transfer crop-specific photosynthetic parameters +kc25i = 30.0, 30.0, 30.0, 30.0, 30.0, ! zhe zhang +akci = 2.1, 2.1, 2.1, 2.1, 2.1, ! 2020-02-05 +ko25i = 3.e4, 3.e4, 3.e4, 3.e4, 3.e4, ! +akoi = 1.2, 1.2, 1.2, 1.2, 1.2, ! +avcmxi = 2.4, 2.4, 2.4, 2.4, 2.4, ! +vcmx25i = 60.0, 80.0, 60.0, 60.0, 55.0, ! +bpi = 4.e4, 1.e4, 2.e3, 2.e3, 2.e3, ! +mpi = 4., 9., 6., 9., 9., ! +folnmxi = 1.5, 1.5, 1.5, 1.5, 1.5, ! foliage nitrogen concentration when f(n)=1 (%) +qe25i = 0.05, 0.06, 0.06, 0.06, 0.06, ! +aref = 7.0, 7.0, 7.0, 7.0, 7.0, ! reference maximum co2 assimilation rate +psnrf = 0.85, 0.85, 0.85, 0.85, 0.85, ! co2 assimilation reduction factor(0-1) (caused by non-modeling part,e.g.pest,weeds) +i2par = 0.5, 0.5, 0.5, 0.5, 0.5, ! fraction of incoming solar radiation to photosynthetically active radiation +tassim0 = 8.0, 8.0, 8.0, 8.0, 8.0, ! minimum temperature for co2 assimilation [c] +tassim1 = 18.0, 18.0, 18.0, 18.0, 18.0, ! co2 assimilation linearly increasing until temperature reaches t1 [c] +tassim2 = 30.0, 30.0, 30.0, 30.0, 30.0, ! co2 assmilation rate remain at aref until temperature reaches t2 [c] +k = 0.55, 0.55, 0.55, 0.55, 0.55, ! light extinction coefficient +epsi = 12.5, 12.5, 12.5, 12.5, 12.5, ! initial light use efficiency + +q10mr = 2.0, 2.0, 2.0, 2.0, 2.0, ! q10 for maintainance respiration +lefreez = 268, 268, 268, 268, 268, ! characteristic t for leaf freezing [k] + +dile_fc_s1 = 0.0, 0.0, 0.0, 0.0, 0.0, ! coeficient for temperature leaf stress death [1/s] +dile_fc_s2 = 0.0, 0.0, 0.0, 0.0, 0.0, ! one row for each of 8 stages +dile_fc_s3 = 0.0, 0.0, 0.0, 0.0, 0.0, +dile_fc_s4 = 0.0, 0.0, 0.0, 0.0, 0.0, +dile_fc_s5 = 0.5, 0.5, 0.5, 0.5, 0.5, +dile_fc_s6 = 0.5, 0.5, 0.5, 0.5, 0.5, +dile_fc_s7 = 0.0, 0.0, 0.0, 0.0, 0.0, +dile_fc_s8 = 0.0, 0.0, 0.0, 0.0, 0.0, + +dile_fw_s1 = 0.0, 0.0, 0.0, 0.0, 0.0, ! coeficient for water leaf stress death [1/s] +dile_fw_s2 = 0.0, 0.0, 0.0, 0.0, 0.0, ! one row for each of 8 stages +dile_fw_s3 = 0.0, 0.0, 0.0, 0.0, 0.0, +dile_fw_s4 = 0.0, 0.0, 0.0, 0.0, 0.0, +dile_fw_s5 = 0.2, 0.2, 0.2, 0.2, 0.2, +dile_fw_s6 = 0.2, 0.2, 0.2, 0.2, 0.2, +dile_fw_s7 = 0.0, 0.0, 0.0, 0.0, 0.0, +dile_fw_s8 = 0.0, 0.0, 0.0, 0.0, 0.0, + +fra_gr = 0.2, 0.2, 0.2, 0.2, 0.2, ! fraction of growth respiration + +lf_ovrc_s1 = 0.0, 0.0, 0.0, 0.0, 0.0, ! fraction of leaf turnover [1/s] +lf_ovrc_s2 = 0.0, 0.0, 0.0, 0.0, 0.0, ! one row for each of 8 stages +lf_ovrc_s3 = 0.0, 0.0, 0.0, 0.0, 0.0, +lf_ovrc_s4 = 0.0, 0.0, 0.0, 0.0, 0.0, +lf_ovrc_s5 = 0.2, 0.2, 0.48, 0.48, 0.48, +lf_ovrc_s6 = 0.3, 0.3, 0.48, 0.48, 0.48, +lf_ovrc_s7 = 0.0, 0.0, 0.0, 0.0, 0.0, +lf_ovrc_s8 = 0.0, 0.0, 0.0, 0.0, 0.0, + +st_ovrc_s1 = 0.0, 0.0, 0.0, 0.0, 0.0, ! fraction of stem turnover [1/s] +st_ovrc_s2 = 0.0, 0.0, 0.0, 0.0, 0.0, ! one row for each of 8 stages +st_ovrc_s3 = 0.0, 0.0, 0.0, 0.0, 0.0, +st_ovrc_s4 = 0.0, 0.0, 0.0, 0.0, 0.0, +st_ovrc_s5 = 0.2, 0.12, 0.12, 0.12, 0.12, +st_ovrc_s6 = 0.3, 0.06, 0.06, 0.06, 0.06, +st_ovrc_s7 = 0.0, 0.0, 0.0, 0.0, 0.0, +st_ovrc_s8 = 0.0, 0.0, 0.0, 0.0, 0.0, + +rt_ovrc_s1 = 0.0, 0.0, 0.0, 0.0, 0.0, ! fraction of root tunrover [1/s] +rt_ovrc_s2 = 0.0, 0.0, 0.0, 0.0, 0.0, ! one row for each of 8 stages +rt_ovrc_s3 = 0.0, 0.0, 0.0, 0.0, 0.0, +rt_ovrc_s4 = 0.0, 0.0, 0.0, 0.0, 0.0, +rt_ovrc_s5 = 0.12, 0.12, 0.12, 0.12, 0.12, +rt_ovrc_s6 = 0.06, 0.06, 0.06, 0.06, 0.06, +rt_ovrc_s7 = 0.0, 0.0, 0.0, 0.0, 0.0, +rt_ovrc_s8 = 0.0, 0.0, 0.0, 0.0, 0.0, + +lfmr25 = 0.8, 1.0, 1.0, 1.0, 1.0, ! leaf maintenance respiration at 25c [umol co2/m**2 /s] +stmr25 = 0.05, 0.05, 0.1, 0.1, 0.1, ! stem maintenance respiration at 25c [umol co2/kg bio/s] +rtmr25 = 0.05, 0.05, 0.0, 0.0, 0.0, ! root maintenance respiration at 25c [umol co2/kg bio/s] +grainmr25 = 0.0, 0.0, 0.1, 0.1, 0.1, ! grain maintenance respiration at 25c [umol co2/kg bio/s] + +lfpt_s1 = 0.0, 0.0, 0.0, 0.0, 0.0, ! fraction of carbohydrate flux to leaf +lfpt_s2 = 0.0, 0.0, 0.0, 0.0, 0.0, ! one row for each of 8 stages +lfpt_s3 = 0.36, 0.4, 0.4, 0.4, 0.4, +lfpt_s4 = 0.1, 0.2, 0.2, 0.2, 0.2, +lfpt_s5 = 0.0, 0.0, 0.0, 0.0, 0.0, +lfpt_s6 = 0.0, 0.0, 0.0, 0.0, 0.0, +lfpt_s7 = 0.0, 0.0, 0.0, 0.0, 0.0, +lfpt_s8 = 0.0, 0.0, 0.0, 0.0, 0.0, + +stpt_s1 = 0.0, 0.0, 0.0, 0.0, 0.0, ! fraction of carbohydrate flux to stem +stpt_s2 = 0.0, 0.0, 0.0, 0.0, 0.0, ! one row for each of 8 stages +stpt_s3 = 0.24, 0.2, 0.2, 0.2, 0.2, +stpt_s4 = 0.6, 0.5, 0.5, 0.5, 0.5, +stpt_s5 = 0.0, 0.0, 0.15, 0.15, 0.15, +stpt_s6 = 0.0, 0.0, 0.05, 0.05, 0.05, +stpt_s7 = 0.0, 0.0, 0.0, 0.0, 0.0, +stpt_s8 = 0.0, 0.0, 0.0, 0.0, 0.0, + +rtpt_s1 = 0.0, 0.0, 0.0, 0.0, 0.0, ! fraction of carbohydrate flux to root +rtpt_s2 = 0.0, 0.0, 0.0, 0.0, 0.0, ! one row for each of 8 stages +rtpt_s3 = 0.4, 0.4, 0.4, 0.4, 0.4, +rtpt_s4 = 0.3, 0.3, 0.3, 0.3, 0.3, +rtpt_s5 = 0.05, 0.05, 0.05, 0.05, 0.05, +rtpt_s6 = 0.0, 0.0, 0.05, 0.05, 0.05, +rtpt_s7 = 0.0, 0.0, 0.0, 0.0, 0.0, +rtpt_s8 = 0.0, 0.0, 0.0, 0.0, 0.0, + +grainpt_s1 = 0.0, 0.0, 0.0, 0.0, 0.0, ! fraction of carbohydrate flux to grain +grainpt_s2 = 0.0, 0.0, 0.0, 0.0, 0.0, ! one row for each of 8 stages +grainpt_s3 = 0.0, 0.0, 0.0, 0.0, 0.0, +grainpt_s4 = 0.0, 0.0, 0.0, 0.0, 0.0, +grainpt_s5 = 0.95, 0.95, 0.8, 0.8, 0.8, +grainpt_s6 = 1.0, 1.0, 0.9, 0.9, 0.9, +grainpt_s7 = 0.0, 0.0, 0.0, 0.0, 0.0, +grainpt_s8 = 0.0, 0.0, 0.0, 0.0, 0.0, + +lfct_s1 = 0.0, 0.0, 0.0, 0.0, 0.0, ! carbohydrate translocation +lfct_s2 = 0.0, 0.0, 0.0, 0.0, 0.0, +lfct_s3 = 0.0, 0.0, 0.4, 0.4, 0.4, +lfct_s4 = 0.0, 0.0, 0.3, 0.3, 0.3, +lfct_s5 = 0.0, 0.0, 0.05, 0.05, 0.05, +lfct_s6 = 0.0, 0.0, 0.05, 0.05, 0.05, +lfct_s7 = 0.0, 0.0, 0.0, 0.0, 0.0, +lfct_s8 = 0.0, 0.0, 0.0, 0.0, 0.0, + +stct_s1 = 0.0, 0.0, 0.0, 0.0, 0.0, ! carbohydrate translocation +stct_s2 = 0.0, 0.0, 0.0, 0.0, 0.0, +stct_s3 = 0.0, 0.0, 0.4, 0.4, 0.4, +stct_s4 = 0.0, 0.0, 0.3, 0.3, 0.3, +stct_s5 = 0.0, 0.0, 0.05, 0.05, 0.05, +stct_s6 = 0.0, 0.0, 0.05, 0.05, 0.05, +stct_s7 = 0.0, 0.0, 0.0, 0.0, 0.0, +stct_s8 = 0.0, 0.0, 0.0, 0.0, 0.0, + +rtct_s1 = 0.0, 0.0, 0.0, 0.0, 0.0, ! carbohydrate translocation +rtct_s2 = 0.0, 0.0, 0.0, 0.0, 0.0, +rtct_s3 = 0.0, 0.0, 0.4, 0.4, 0.4, +rtct_s4 = 0.0, 0.0, 0.3, 0.3, 0.3, +rtct_s5 = 0.0, 0.0, 0.05, 0.05, 0.05, +rtct_s6 = 0.0, 0.0, 0.05, 0.05, 0.05, +rtct_s7 = 0.0, 0.0, 0.0, 0.0, 0.0, +rtct_s8 = 0.0, 0.0, 0.0, 0.0, 0.0, + +bio2lai = 0.015, 0.030, 0.015, 0.015, 0.015, ! leaf are per living leaf biomass [m^2/kg] + +/ + +&noahmp_tiledrain_parameters +!-----------------------------------! +! for simple drainage model ! +!-----------------------------------! +nsoiltype = 19 ! num_soil_types +drain_layer_opt = 4 + ! 0 - from one specified layer by td_depth, + ! 1 - from layers 1 & 2, + ! 2 - from layer layers 1, 2, and 3 + ! 3 - from layer 2 and 3 + ! 4 - from layer layers 3, 4 + ! 5 - from all the four layers +!-------------------------------------------------------------------------------------------------------------------------------------------------------------------- ! +! 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 ! +!-------------------------------------------------------------------------------------------------------------------------------------------------------------------- ! +tdsmc_fac = 0.90, 0.90, 0.90, 0.90, 0.90, 1.25, 0.90, 1.0, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90, 0.90 ! corresponds to number of soil types soilparam.tbl +td_depth = 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4 ! depth of drain tube from the soil surface +td_dc = 20., 20., 20., 20., 20., 20., 20., 20., 20., 20., 20., 20., 20., 20., 20., 20., 20., 20., 20. ! drainage coefficient (mm d^-1) +!-------------------------------------------------------------------------------------------------------------------------------------------------------------------- ! +! +!-------------------------------------! +! for hooghoudt tile drain model ! +!-------------------------------------! +!-------------------------------------------------------------------------------------------------------------------------------------------------------------------- +td_dcoef = 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07 ! m d^-1, drainage coefficent +td_d = 1.00, 1.00, 1.00, 1.00, 1.00, 1.00, 1.00, 1.00, 1.00, 1.00, 1.00, 1.00, 1.00, 1.00, 1.00, 1.00, 1.00, 1.00, 1.00 ! m, depth to impe layer from drain water level (d) +td_adepth = 2.00, 2.00, 2.00, 2.00, 2.00, 2.00, 2.00, 2.00, 2.00, 2.00, 2.00, 2.00, 2.00, 2.00, 2.00, 2.00, 2.00, 2.00, 2.00 ! m, actual depth of imp layer from land surface +td_radi = 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07, 0.07 ! m, effective radius of drains (ro) +td_spac = 60.0, 55.0, 45.0, 20.0, 25.0, 30.0, 40.0, 16.0, 18.0, 50.0, 15.0, 10.0, 35.0, 10.0, 60.0, 60.0, 10.0, 60.0, 60.0 ! m, distance between two drain tubes or tiles (l) +td_ddrain = 1.20, 1.20, 1.20, 1.20, 1.20, 1.20, 1.20, 1.20, 1.20, 1.20, 1.20, 1.20, 1.20, 1.20, 1.20, 1.20, 1.20, 1.20, 1.20 ! m, depth of drain +klat_fac = 1.30, 1.80, 2.10, 2.60, 2.90, 2.50, 2.30, 3.00, 2.70, 2.00, 3.10, 3.30, 2.50, 1.00, 1.00, 1.80, 4.00, 1.00, 1.30 ! multiplication factor to lateral hyd.cond +!-------------------------------------------------------------------------------------------------------------------------------------------------------------------- + +/ + +&noahmp_optional_parameters + + !------------------------------------------------------------------------------ + ! saxton and rawls 2006 pedo-transfer function coefficients + !------------------------------------------------------------------------------ + + sr2006_theta_1500t_a = -0.024 ! sand coefficient + sr2006_theta_1500t_b = 0.487 ! clay coefficient + sr2006_theta_1500t_c = 0.006 ! orgm coefficient + sr2006_theta_1500t_d = 0.005 ! sand*orgm coefficient + sr2006_theta_1500t_e = -0.013 ! clay*orgm coefficient + sr2006_theta_1500t_f = 0.068 ! sand*clay coefficient + sr2006_theta_1500t_g = 0.031 ! constant adjustment + + sr2006_theta_1500_a = 0.14 ! theta_1500t coefficient + sr2006_theta_1500_b = -0.02 ! constant adjustment + + sr2006_theta_33t_a = -0.251 ! sand coefficient + sr2006_theta_33t_b = 0.195 ! clay coefficient + sr2006_theta_33t_c = 0.011 ! orgm coefficient + sr2006_theta_33t_d = 0.006 ! sand*orgm coefficient + sr2006_theta_33t_e = -0.027 ! clay*orgm coefficient + sr2006_theta_33t_f = 0.452 ! sand*clay coefficient + sr2006_theta_33t_g = 0.299 ! constant adjustment + + sr2006_theta_33_a = 1.283 ! theta_33t*theta_33t coefficient + sr2006_theta_33_b = -0.374 ! theta_33t coefficient + sr2006_theta_33_c = -0.015 ! constant adjustment + + sr2006_theta_s33t_a = 0.278 ! sand coefficient + sr2006_theta_s33t_b = 0.034 ! clay coefficient + sr2006_theta_s33t_c = 0.022 ! orgm coefficient + sr2006_theta_s33t_d = -0.018 ! sand*orgm coefficient + sr2006_theta_s33t_e = -0.027 ! clay*orgm coefficient + sr2006_theta_s33t_f = -0.584 ! sand*clay coefficient + sr2006_theta_s33t_g = 0.078 ! constant adjustment + + sr2006_theta_s33_a = 0.636 ! theta_s33t coefficient + sr2006_theta_s33_b = -0.107 ! constant adjustment + + sr2006_psi_et_a = -21.67 ! sand coefficient + sr2006_psi_et_b = -27.93 ! clay coefficient + sr2006_psi_et_c = -81.97 ! theta_s33 coefficient + sr2006_psi_et_d = 71.12 ! sand*theta_s33 coefficient + sr2006_psi_et_e = 8.29 ! clay*theta_s33 coefficient + sr2006_psi_et_f = 14.05 ! sand*clay coefficient + sr2006_psi_et_g = 27.16 ! constant adjustment + + sr2006_psi_e_a = 0.02 ! psi_et*psi_et coefficient + sr2006_psi_e_b = -0.113 ! psi_et coefficient + sr2006_psi_e_c = -0.7 ! constant adjustment + + sr2006_smcmax_a = -0.097 ! sand adjustment + sr2006_smcmax_b = 0.043 ! constant adjustment + +/ + +&noahmp_general_parameters + !------------------------------------------------- + ! this part is originally from genparm.tbl + !------------------------------------------------- +slope_data = 0.1, 0.6, 1.0, 0.35, 0.55, 0.8, 0.63, 0.0, 0.0 ! slope factor for soil drainage (9 different slope types) +csoil_data = 2.00e+6 ! soil heat capacity [j m-3 k-1] +refdk_data = 2.0e-6 ! parameter in the surface runoff parameterization +refkdt_data = 3.0 ! parameter in the surface runoff parameterization +frzk_data = 0.15 ! frozen ground parameter +zbot_data = -8.0 ! depth [m] of lower boundary soil temperature +czil_data = 0.1 ! parameter used in the calculation of the roughness length for heat + +/ + +&noahmp_stas_soil_categories + sltype = "stas" ! "stas" or "stas_ruc" + slcats = 19 !num_soil_types +/ + +&noahmp_soil_stas_parameters +! 19 total soil types considered by noahmp +! 1: sand +! 2: loamy sand +! 3: sandy loam +! 4: silt loam +! 5: silt +! 6: loam +! 7: sandy clay loam +! 8: silty clay loam +! 9: clay loam +! 10: sandy clay +! 11: silty clay +! 12: clay +! 13: organic material +! 14: water +! 15: bedrock +! 16: other(land-ice) +! 17: playa +! 18: lava +! 19: white sand +!-------------------------------------------------------------------------------------------------------------------------------------------------------------------- ! +! soil type: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 ! +!-------------------------------------------------------------------------------------------------------------------------------------------------------------------- ! + bb = 2.790, 4.260, 4.740, 5.330, 3.860, 5.250, 6.770, 8.720, 8.170, 10.730, 10.390, 11.550, 5.250, 0.000, 2.790, 4.260, 11.550, 2.790, 2.790 + drysmc = 0.010, 0.028, 0.047, 0.084, 0.061, 0.066, 0.069, 0.120, 0.103, 0.100, 0.126, 0.138, 0.066, 0.000, 0.006, 0.028, 0.030, 0.006, 0.010 + maxsmc = 0.339, 0.421, 0.434, 0.476, 0.484, 0.439, 0.404, 0.464, 0.465, 0.406, 0.468, 0.468, 0.439, 1.000, 0.200, 0.421, 0.468, 0.200, 0.339 + refsmc = 0.192, 0.283, 0.312, 0.360, 0.347, 0.329, 0.315, 0.387, 0.382, 0.338, 0.404, 0.412, 0.329, 0.000, 0.170, 0.283, 0.454, 0.170, 0.192 + satpsi = 0.069, 0.036, 0.141, 0.759, 0.955, 0.355, 0.135, 0.617, 0.263, 0.098, 0.324, 0.468, 0.355, 0.000, 0.069, 0.036, 0.468, 0.069, 0.069 + satdk = 4.66e-05, 1.41e-05, 5.23e-06, 2.81e-06, 2.18e-06, 3.38e-06, 4.45e-06, 2.03e-06, 2.45e-06, 7.22e-06, 1.34e-06, 9.74e-07, 3.38e-06, 0.00e+00, 1.41e-04, 1.41e-05, 9.74e-07, 1.41e-04, 4.66e-05 + satdw = 2.65e-05, 5.14e-06, 8.05e-06, 2.39e-05, 1.66e-05, 1.43e-05, 1.01e-05, 2.35e-05, 1.13e-05, 1.87e-05, 9.64e-06, 1.12e-05, 1.43e-05, 0.00e+00, 1.36e-04, 5.14e-06, 1.12e-05, 1.36e-04, 2.65e-05 + wltsmc = 0.010, 0.028, 0.047, 0.084, 0.061, 0.066, 0.069, 0.120, 0.103, 0.100, 0.126, 0.138, 0.066, 0.000, 0.006, 0.028, 0.030, 0.006, 0.010 + qtz = 0.920, 0.820, 0.600, 0.250, 0.100, 0.400, 0.600, 0.100, 0.350, 0.520, 0.100, 0.250, 0.050, 0.600, 0.070, 0.250, 0.600, 0.520, 0.920 + bvic = 0.050, 0.080, 0.090, 0.250, 0.150, 0.180, 0.200, 0.220, 0.230, 0.250, 0.280, 0.300, 0.260, 0.000, 1.000, 1.000, 1.000, 0.350, 0.150 + axaj = 0.009, 0.010, 0.009, 0.010, 0.012, 0.013, 0.014, 0.015, 0.016, 0.015, 0.016, 0.017, 0.012, 0.001, 0.017, 0.017, 0.017, 0.015, 0.009 + bxaj = 0.050, 0.080, 0.090, 0.250, 0.150, 0.180, 0.200, 0.220, 0.230, 0.250, 0.280, 0.300, 0.260, 0.000, 1.000, 1.000, 1.000, 0.350, 0.150 + xxaj = 0.050, 0.080, 0.090, 0.250, 0.150, 0.180, 0.200, 0.220, 0.230, 0.250, 0.280, 0.300, 0.260, 0.000, 1.000, 1.000, 1.000, 0.350, 0.150 + bdvic = 0.050, 0.080, 0.090, 0.250, 0.150, 0.180, 0.200, 0.220, 0.230, 0.250, 0.280, 0.300, 0.260, 0.000, 1.000, 1.000, 1.000, 0.350, 0.150 + bbvic = 1.000, 1.010, 1.020, 1.025, 1.000, 1.000, 1.032, 1.035, 1.040, 1.042, 1.045, 1.000, 1.000, 1.000, 1.000, 1.000, 1.000, 1.000, 1.000 + gdvic = 0.050, 0.070, 0.130, 0.200, 0.170, 0.110, 0.260, 0.350, 0.260, 0.300, 0.380, 0.410, 0.500, 0.001, 0.010, 0.001, 0.001, 0.050, 0.020 + +/ + +&noahmp_soil_stas_ruc_parameters +! 19 total soil types considered by noahmp +! 1: sand +! 2: loamy sand +! 3: sandy loam +! 4: silt loam +! 5: silt +! 6: loam +! 7: sandy clay loam +! 8: silty clay loam +! 9: clay loam +! 10: sandy clay +! 11: silty clay +! 12: clay +! 13: organic material +! 14: water +! 15: bedrock +! 16: other(land-ice) +! 17: playa +! 18: lava +! 19: white sand +!-------------------------------------------------------------------------------------------------------------------------------------------------------------------- ! +! soil type: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 ! +!-------------------------------------------------------------------------------------------------------------------------------------------------------------------- ! + bb = 4.050, 4.380, 4.900, 5.300, 5.300, 5.390, 7.120, 7.750, 5.390, 10.400, 10.400, 11.400, 5.390, 0.000, 4.050, 4.900, 11.400, 4.050, 4.050 + drysmc = 0.002, 0.035, 0.041, 0.034, 0.034, 0.050, 0.068, 0.060, 0.050, 0.070, 0.070, 0.068, 0.027, 0.000, 0.004, 0.065, 0.030, 0.006, 0.010 + hc = 1.470, 1.410, 1.340, 1.270, 1.270, 1.210, 1.180, 1.320, 1.210, 1.180, 1.150, 1.090, 1.210, 4.180, 2.030, 2.100, 1.410, 1.410, 1.470 + maxsmc = 0.395, 0.410, 0.435, 0.485, 0.485, 0.451, 0.420, 0.477, 0.451, 0.426, 0.492, 0.482, 0.451, 1.000, 0.200, 0.435, 0.468, 0.200, 0.339 + refsmc = 0.174, 0.179, 0.249, 0.369, 0.369, 0.314, 0.299, 0.357, 0.314, 0.316, 0.409, 0.400, 0.314, 1.000, 0.100, 0.249, 0.454, 0.170, 0.236 + satpsi = 0.121, 0.090, 0.218, 0.786, 0.786, 0.478, 0.299, 0.356, 0.478, 0.153, 0.490, 0.405, 0.478, 0.000, 0.121, 0.218, 0.468, 0.069, 0.069 + satdk = 1.76e-04, 1.56e-04, 3.47e-05, 7.20e-06, 7.20e-06, 6.95e-06, 6.30e-06, 1.70e-06, 6.95e-06, 2.17e-06, 1.03e-06, 1.28e-06, 6.95e-06, 0.00e+00, 1.41e-04, 3.47e-05, 9.74e-07, 1.41e-04, 1.76e-04 + satdw = 6.08e-07, 5.14e-06, 8.05e-06, 2.39e-05, 2.39e-05, 1.43e-05, 9.90e-06, 2.37e-05, 1.43e-05, 1.87e-05, 9.64e-06, 1.12e-05, 1.43e-05, 0.00e+00, 1.36e-04, 5.14e-06, 1.12e-05, 1.36e-04, 6.08e-07 + wltsmc = 0.033, 0.055, 0.095, 0.143, 0.143, 0.137, 0.148, 0.170, 0.137, 0.158, 0.190, 0.198, 0.117, 0.000, 0.006, 0.114, 0.030, 0.006, 0.060 + qtz = 0.920, 0.820, 0.600, 0.250, 0.100, 0.400, 0.600, 0.100, 0.400, 0.520, 0.100, 0.250, 0.050, 0.000, 0.600, 0.050, 0.600, 0.520, 0.920 + bvic = 0.050, 0.080, 0.090, 0.100, 0.150, 0.180, 0.200, 0.220, 0.230, 0.250, 0.280, 0.300, 0.260, 0.000, 1.000, 1.000, 1.000, 0.350, 0.150 + axaj = 0.009, 0.010, 0.009, 0.010, 0.012, 0.013, 0.014, 0.015, 0.016, 0.015, 0.016, 0.017, 0.012, 0.001, 0.017, 0.017, 0.017, 0.015, 0.009 + bxaj = 0.050, 0.080, 0.090, 0.250, 0.150, 0.180, 0.200, 0.220, 0.230, 0.250, 0.280, 0.300, 0.260, 0.000, 1.000, 1.000, 1.000, 0.350, 0.150 + xxaj = 0.050, 0.080, 0.090, 0.250, 0.150, 0.180, 0.200, 0.220, 0.230, 0.250, 0.280, 0.300, 0.260, 0.000, 1.000, 1.000, 1.000, 0.350, 0.150 + bdvic = 0.050, 0.080, 0.090, 0.100, 0.150, 0.180, 0.200, 0.220, 0.230, 0.250, 0.280, 0.300, 0.260, 0.000, 1.000, 1.000, 1.000, 0.350, 0.150 + bbvic = 1.000, 1.010, 1.020, 1.025, 1.000, 1.000, 1.032, 1.035, 1.040, 1.042, 1.045, 1.000, 1.000, 1.000, 1.000, 1.000, 1.000, 1.000, 1.000 + gdvic = 0.050, 0.070, 0.130, 0.200, 0.170, 0.110, 0.260, 0.350, 0.260, 0.300, 0.380, 0.410, 0.500, 0.001, 0.010, 0.001, 0.001, 0.050, 0.020 + +/ + diff --git a/tests/parm/rap.nml.IN b/tests/parm/rap.nml.IN index 75177cc326..ceb446cce3 100644 --- a/tests/parm/rap.nml.IN +++ b/tests/parm/rap.nml.IN @@ -185,6 +185,7 @@ deflate_level=1 iopt_tbot = 2 iopt_stc = 3 iopt_trs = 2 + iopt_diag = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. diff --git a/tests/parm/regional_stoch.nml.IN b/tests/parm/regional_stoch.nml.IN index 61fa6806af..2f5ab5772a 100644 --- a/tests/parm/regional_stoch.nml.IN +++ b/tests/parm/regional_stoch.nml.IN @@ -195,6 +195,7 @@ iopt_snf = 4 iopt_stc = 1 iopt_trs = 2 + iopt_diag = 2 iopt_tbot = 2 iovr = 3 isol = 2 diff --git a/tests/parm/stretched-input.nml.IN b/tests/parm/stretched-input.nml.IN index e3d14b3f9f..089b8e54f2 100644 --- a/tests/parm/stretched-input.nml.IN +++ b/tests/parm/stretched-input.nml.IN @@ -161,6 +161,7 @@ iopt_tbot = 2 iopt_stc = 1 iopt_trs = 2 + iopt_diag = 2 debug = .false. nstf_name = @[NSTF_NAME] xkzminv = 0.3 diff --git a/tests/parm/stretched-nest-input.nml.IN b/tests/parm/stretched-nest-input.nml.IN index 4e4bd0eb68..2f4ae5dabb 100644 --- a/tests/parm/stretched-nest-input.nml.IN +++ b/tests/parm/stretched-nest-input.nml.IN @@ -170,6 +170,7 @@ iopt_tbot = 2 iopt_stc = 1 iopt_trs = 2 + iopt_diag = 2 debug = .false. nstf_name = @[NSTF_NAME] xkzminv = 0.3 diff --git a/tests/parm/wam.nml.IN b/tests/parm/wam.nml.IN index 6233176409..59dcb406af 100644 --- a/tests/parm/wam.nml.IN +++ b/tests/parm/wam.nml.IN @@ -157,6 +157,7 @@ iopt_tbot = 2 iopt_stc = 1 iopt_trs = 2 + iopt_diag = 2 debug = .false. levr = 90 h2o_phys = @[H2O_PHYS] diff --git a/tests/rt.conf b/tests/rt.conf index 92e9ffb91b..bd059358fb 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -123,7 +123,7 @@ RUN | rap_sfcdiff | RUN | rap_sfcdiff_decomp | | | RUN | rap_sfcdiff_restart | | | rap_sfcdiff RUN | hrrr_control | - wcoss2 | baseline | -RUN | hrrr_control_qr | - wcoss2 | baseline | +RUN | hrrr_control_qr | - wcoss2 | | RUN | hrrr_control_decomp | - wcoss2 | | RUN | hrrr_control_2threads | - wcoss2 | | RUN | hrrr_control_restart | - wcoss2 | | hrrr_control @@ -327,7 +327,7 @@ RUN | rap_sfcdiff | + hera cheyenne RUN | rap_sfcdiff_decomp | + hera cheyenne | | RUN | rap_sfcdiff_restart | + hera cheyenne | | rap_sfcdiff RUN | hrrr_control | + hera cheyenne | baseline | -RUN | hrrr_control_qr | + hera cheyenne | baseline | +RUN | hrrr_control_qr | + hera cheyenne | | RUN | hrrr_control_2threads | + hera cheyenne | | RUN | hrrr_control_decomp | + hera cheyenne | | RUN | hrrr_control_restart | + hera cheyenne | | hrrr_control diff --git a/tests/run_test.sh b/tests/run_test.sh index 5556ec150a..70798f6c90 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -207,6 +207,10 @@ if [[ $FV3 == true ]]; then fi fi +# NoahMP table file + cp ${PATHRT}/parm/noahmptable.tbl . + + # AQM if [[ $AQM == .true. ]]; then cp ${PATHRT}/parm/aqm/aqm.rc . diff --git a/tests/tests/atmaero_control_p8 b/tests/tests/atmaero_control_p8 index 36dd375fb9..9d7461e491 100644 --- a/tests/tests/atmaero_control_p8 +++ b/tests/tests/atmaero_control_p8 @@ -91,6 +91,7 @@ export IOPT_STC=3 # P8 export IOPT_SFC=3 export IOPT_TRS=2 +export IOPT_DIAG=2 # FV3 P7 settings export D2_BG_K1=0.20 @@ -142,6 +143,7 @@ export FNTG3C="'C96.substrate_temperature.tileX.nc'" export FNVEGC="'C96.vegetation_greenness.tileX.nc'" export FNVETC="'C96.vegetation_type.tileX.nc'" export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSOCC="'C96.soil_color.tileX.nc'" export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FNVMNC="'C96.vegetation_greenness.tileX.nc'" diff --git a/tests/tests/atmaero_control_p8_rad b/tests/tests/atmaero_control_p8_rad index 1d62680c86..d38839770a 100644 --- a/tests/tests/atmaero_control_p8_rad +++ b/tests/tests/atmaero_control_p8_rad @@ -86,6 +86,7 @@ export IOPT_STC=3 # P8 export IOPT_SFC=3 export IOPT_TRS=2 +export IOPT_DIAG=2 # FV3 P7 settings export D2_BG_K1=0.20 @@ -137,6 +138,7 @@ export FNTG3C="'C96.substrate_temperature.tileX.nc'" export FNVEGC="'C96.vegetation_greenness.tileX.nc'" export FNVETC="'C96.vegetation_type.tileX.nc'" export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSOCC="'C96.soil_color.tileX.nc'" export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FNVMNC="'C96.vegetation_greenness.tileX.nc'" diff --git a/tests/tests/atmaero_control_p8_rad_micro b/tests/tests/atmaero_control_p8_rad_micro index 52a3ab86b6..0f14c4ce11 100644 --- a/tests/tests/atmaero_control_p8_rad_micro +++ b/tests/tests/atmaero_control_p8_rad_micro @@ -86,6 +86,7 @@ export IOPT_STC=3 # P8 export IOPT_SFC=3 export IOPT_TRS=2 +export IOPT_DIAG=2 # FV3 P7 settings export D2_BG_K1=0.20 @@ -139,6 +140,7 @@ export FNTG3C="'C96.substrate_temperature.tileX.nc'" export FNVEGC="'C96.vegetation_greenness.tileX.nc'" export FNVETC="'C96.vegetation_type.tileX.nc'" export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSOCC="'C96.soil_color.tileX.nc'" export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FNVMNC="'C96.vegetation_greenness.tileX.nc'" diff --git a/tests/tests/atmwav_control_noaero_p8 b/tests/tests/atmwav_control_noaero_p8 index 86f39c725a..47fe177cdd 100644 --- a/tests/tests/atmwav_control_noaero_p8 +++ b/tests/tests/atmwav_control_noaero_p8 @@ -98,6 +98,7 @@ export IOPT_STC=3 # P8 export IOPT_SFC=3 export IOPT_TRS=2 +export IOPT_DIAG=2 # FV3 P7 settings export D2_BG_K1=0.20 @@ -148,6 +149,7 @@ export FNTG3C="'C96.substrate_temperature.tileX.nc'" export FNVEGC="'C96.vegetation_greenness.tileX.nc'" export FNVETC="'C96.vegetation_type.tileX.nc'" export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSOCC="'C96.soil_color.tileX.nc'" export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FNVMNC="'C96.vegetation_greenness.tileX.nc'" diff --git a/tests/tests/control_2threads_p8 b/tests/tests/control_2threads_p8 index c9aa8189f3..9ec4cac291 100644 --- a/tests/tests/control_2threads_p8 +++ b/tests/tests/control_2threads_p8 @@ -78,6 +78,7 @@ export IOPT_STC=3 # P8 export IOPT_SFC=3 export IOPT_TRS=2 +export IOPT_DIAG=2 # FV3 P7 settings export D2_BG_K1=0.20 @@ -129,6 +130,7 @@ export FNTG3C="'C96.substrate_temperature.tileX.nc'" export FNVEGC="'C96.vegetation_greenness.tileX.nc'" export FNVETC="'C96.vegetation_type.tileX.nc'" export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSOCC="'C96.soil_color.tileX.nc'" export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FNVMNC="'C96.vegetation_greenness.tileX.nc'" @@ -167,4 +169,4 @@ export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. -export SATMEDMF=.true. \ No newline at end of file +export SATMEDMF=.true. diff --git a/tests/tests/control_debug_p8 b/tests/tests/control_debug_p8 index 066b847ac1..2c937ffef8 100644 --- a/tests/tests/control_debug_p8 +++ b/tests/tests/control_debug_p8 @@ -39,6 +39,7 @@ export IOPT_STC=3 # P8 export IOPT_SFC=3 export IOPT_TRS=2 +export IOPT_DIAG=2 # FV3 P7 settings export D2_BG_K1=0.20 @@ -90,6 +91,7 @@ export FNTG3C="'C96.substrate_temperature.tileX.nc'" export FNVEGC="'C96.vegetation_greenness.tileX.nc'" export FNVETC="'C96.vegetation_type.tileX.nc'" export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSOCC="'C96.soil_color.tileX.nc'" export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FNVMNC="'C96.vegetation_greenness.tileX.nc'" diff --git a/tests/tests/control_decomp_p8 b/tests/tests/control_decomp_p8 index f292fe41a4..a220fb34a9 100644 --- a/tests/tests/control_decomp_p8 +++ b/tests/tests/control_decomp_p8 @@ -78,6 +78,7 @@ export IOPT_STC=3 # P8 export IOPT_SFC=3 export IOPT_TRS=2 +export IOPT_DIAG=2 # FV3 P7 settings export D2_BG_K1=0.20 @@ -129,6 +130,7 @@ export FNTG3C="'C96.substrate_temperature.tileX.nc'" export FNVEGC="'C96.vegetation_greenness.tileX.nc'" export FNVETC="'C96.vegetation_type.tileX.nc'" export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSOCC="'C96.soil_color.tileX.nc'" export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FNVMNC="'C96.vegetation_greenness.tileX.nc'" diff --git a/tests/tests/control_p8 b/tests/tests/control_p8 index f2b02ab3b2..5faa830689 100644 --- a/tests/tests/control_p8 +++ b/tests/tests/control_p8 @@ -79,6 +79,7 @@ export IOPT_STC=3 # P8 export IOPT_SFC=3 export IOPT_TRS=2 +export IOPT_DIAG=2 # FV3 P7 settings export D2_BG_K1=0.20 @@ -130,6 +131,7 @@ export FNTG3C="'C96.substrate_temperature.tileX.nc'" export FNVEGC="'C96.vegetation_greenness.tileX.nc'" export FNVETC="'C96.vegetation_type.tileX.nc'" export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSOCC="'C96.soil_color.tileX.nc'" export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FNVMNC="'C96.vegetation_greenness.tileX.nc'" diff --git a/tests/tests/control_p8_atmlnd_sbs b/tests/tests/control_p8_atmlnd_sbs index 8eda87a651..2bef5c6177 100644 --- a/tests/tests/control_p8_atmlnd_sbs +++ b/tests/tests/control_p8_atmlnd_sbs @@ -117,6 +117,7 @@ export IOPT_STC=3 # P8 export IOPT_SFC=3 export IOPT_TRS=2 +export IOPT_DIAG=2 # FV3 P7 settings export D2_BG_K1=0.20 @@ -168,6 +169,7 @@ export FNTG3C="'INPUT/C96.substrate_temperature.tileX.nc'" export FNVEGC="'INPUT/C96.vegetation_greenness.tileX.nc'" export FNVETC="'INPUT/C96.vegetation_type.tileX.nc'" export FNSOTC="'INPUT/C96.soil_type.tileX.nc'" +export FNSOCC="'INPUT/C96.soil_color.tileX.nc'" export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FNVMNC="'INPUT/C96.vegetation_greenness.tileX.nc'" diff --git a/tests/tests/control_p8_faster b/tests/tests/control_p8_faster index c0ed350e10..67e24438df 100644 --- a/tests/tests/control_p8_faster +++ b/tests/tests/control_p8_faster @@ -79,6 +79,7 @@ export IOPT_STC=3 # P8 export IOPT_SFC=3 export IOPT_TRS=2 +export IOPT_DIAG=2 # FV3 P7 settings export D2_BG_K1=0.20 @@ -130,6 +131,7 @@ export FNTG3C="'C96.substrate_temperature.tileX.nc'" export FNVEGC="'C96.vegetation_greenness.tileX.nc'" export FNVETC="'C96.vegetation_type.tileX.nc'" export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSOCC="'C96.soil_color.tileX.nc'" export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FNVMNC="'C96.vegetation_greenness.tileX.nc'" diff --git a/tests/tests/control_p8_lndp b/tests/tests/control_p8_lndp index 30375bf294..1f5d327dca 100644 --- a/tests/tests/control_p8_lndp +++ b/tests/tests/control_p8_lndp @@ -52,6 +52,7 @@ export IOPT_STC=3 # P8 export IOPT_SFC=3 export IOPT_TRS=2 +export IOPT_DIAG=2 # FV3 P7 settings export D2_BG_K1=0.20 @@ -103,6 +104,7 @@ export FNTG3C="'C96.substrate_temperature.tileX.nc'" export FNVEGC="'C96.vegetation_greenness.tileX.nc'" export FNVETC="'C96.vegetation_type.tileX.nc'" export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSOCC="'C96.soil_color.tileX.nc'" export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FNVMNC="'C96.vegetation_greenness.tileX.nc'" diff --git a/tests/tests/control_p8_mynn b/tests/tests/control_p8_mynn index c0791e6c23..08e480fc13 100644 --- a/tests/tests/control_p8_mynn +++ b/tests/tests/control_p8_mynn @@ -79,6 +79,7 @@ export IOPT_STC=3 # P8 export IOPT_SFC=3 export IOPT_TRS=2 +export IOPT_DIAG=2 # FV3 P7 settings export D2_BG_K1=0.20 @@ -130,6 +131,7 @@ export FNTG3C="'C96.substrate_temperature.tileX.nc'" export FNVEGC="'C96.vegetation_greenness.tileX.nc'" export FNVETC="'C96.vegetation_type.tileX.nc'" export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSOCC="'C96.soil_color.tileX.nc'" export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FNVMNC="'C96.vegetation_greenness.tileX.nc'" diff --git a/tests/tests/control_p8_rrtmgp b/tests/tests/control_p8_rrtmgp index 04cbfd3f7b..bfde5cefb6 100644 --- a/tests/tests/control_p8_rrtmgp +++ b/tests/tests/control_p8_rrtmgp @@ -79,6 +79,7 @@ export IOPT_STC=3 # P8 export IOPT_SFC=3 export IOPT_TRS=2 +export IOPT_DIAG=2 # FV3 P7 settings export D2_BG_K1=0.20 @@ -130,6 +131,7 @@ export FNTG3C="'C96.substrate_temperature.tileX.nc'" export FNVEGC="'C96.vegetation_greenness.tileX.nc'" export FNVETC="'C96.vegetation_type.tileX.nc'" export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSOCC="'C96.soil_color.tileX.nc'" export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FNVMNC="'C96.vegetation_greenness.tileX.nc'" diff --git a/tests/tests/control_qr_p8 b/tests/tests/control_qr_p8 index 12ea44b095..0168860ffc 100644 --- a/tests/tests/control_qr_p8 +++ b/tests/tests/control_qr_p8 @@ -80,6 +80,7 @@ export IOPT_STC=3 # P8 export IOPT_SFC=3 export IOPT_TRS=2 +export IOPT_DIAG=2 # FV3 P7 settings export D2_BG_K1=0.20 @@ -131,6 +132,7 @@ export FNTG3C="'C96.substrate_temperature.tileX.nc'" export FNVEGC="'C96.vegetation_greenness.tileX.nc'" export FNVETC="'C96.vegetation_type.tileX.nc'" export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSOCC="'C96.soil_color.tileX.nc'" export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FNVMNC="'C96.vegetation_greenness.tileX.nc'" diff --git a/tests/tests/control_restart_p8 b/tests/tests/control_restart_p8 index fad7839bf8..b806f6c3e7 100644 --- a/tests/tests/control_restart_p8 +++ b/tests/tests/control_restart_p8 @@ -78,6 +78,7 @@ export IOPT_STC=3 # P8 export IOPT_SFC=3 export IOPT_TRS=2 +export IOPT_DIAG=2 # FV3 P7 settings export D2_BG_K1=0.20 @@ -129,6 +130,7 @@ export FNTG3C="'C96.substrate_temperature.tileX.nc'" export FNVEGC="'C96.vegetation_greenness.tileX.nc'" export FNVETC="'C96.vegetation_type.tileX.nc'" export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSOCC="'C96.soil_color.tileX.nc'" export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FNVMNC="'C96.vegetation_greenness.tileX.nc'" diff --git a/tests/tests/control_restart_qr_p8 b/tests/tests/control_restart_qr_p8 index e479cd310a..661c85a879 100644 --- a/tests/tests/control_restart_qr_p8 +++ b/tests/tests/control_restart_qr_p8 @@ -79,6 +79,7 @@ export IOPT_STC=3 # P8 export IOPT_SFC=3 export IOPT_TRS=2 +export IOPT_DIAG=2 # FV3 P7 settings export D2_BG_K1=0.20 @@ -130,6 +131,7 @@ export FNTG3C="'C96.substrate_temperature.tileX.nc'" export FNVEGC="'C96.vegetation_greenness.tileX.nc'" export FNVETC="'C96.vegetation_type.tileX.nc'" export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSOCC="'C96.soil_color.tileX.nc'" export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FNVMNC="'C96.vegetation_greenness.tileX.nc'" diff --git a/tests/tests/cpld_bmark_p8 b/tests/tests/cpld_bmark_p8 index 84644560ef..c779699e43 100644 --- a/tests/tests/cpld_bmark_p8 +++ b/tests/tests/cpld_bmark_p8 @@ -136,6 +136,7 @@ export FNTG3C="'C384.substrate_temperature.tileX.nc'" export FNVEGC="'C384.vegetation_greenness.tileX.nc'" export FNVETC="'C384.vegetation_type.tileX.nc'" export FNSOTC="'C384.soil_type.tileX.nc'" +export FNSOCC="'C384.soil_color.tileX.nc'" export FNVMNC="'C384.vegetation_greenness.tileX.nc'" export FNVMXC="'C384.vegetation_greenness.tileX.nc'" export FNSLPC="'C384.slope_type.tileX.nc'" diff --git a/tests/tests/cpld_bmark_p8_35d b/tests/tests/cpld_bmark_p8_35d index 2a3e389d69..f81b476b31 100644 --- a/tests/tests/cpld_bmark_p8_35d +++ b/tests/tests/cpld_bmark_p8_35d @@ -90,6 +90,7 @@ export FNTG3C="'C384.substrate_temperature.tileX.nc'" export FNVEGC="'C384.vegetation_greenness.tileX.nc'" export FNVETC="'C384.vegetation_type.tileX.nc'" export FNSOTC="'C384.soil_type.tileX.nc'" +export FNSOCC="'C384.soil_color.tileX.nc'" export FNVMNC="'C384.vegetation_greenness.tileX.nc'" export FNVMXC="'C384.vegetation_greenness.tileX.nc'" export FNSLPC="'C384.slope_type.tileX.nc'" diff --git a/tests/tests/cpld_control_c192_p8 b/tests/tests/cpld_control_c192_p8 index 8f20c9c18f..04d9e6f44c 100644 --- a/tests/tests/cpld_control_c192_p8 +++ b/tests/tests/cpld_control_c192_p8 @@ -127,6 +127,7 @@ export FNTG3C="'C192.substrate_temperature.tileX.nc'" export FNVEGC="'C192.vegetation_greenness.tileX.nc'" export FNVETC="'C192.vegetation_type.tileX.nc'" export FNSOTC="'C192.soil_type.tileX.nc'" +export FNSOCC="'C192.soil_color.tileX.nc'" export FNVMNC="'C192.vegetation_greenness.tileX.nc'" export FNVMXC="'C192.vegetation_greenness.tileX.nc'" export FNSLPC="'C192.slope_type.tileX.nc'" diff --git a/tests/tests/cpld_control_c48 b/tests/tests/cpld_control_c48 index fac8b929da..853ad40c6f 100644 --- a/tests/tests/cpld_control_c48 +++ b/tests/tests/cpld_control_c48 @@ -113,6 +113,7 @@ export FNTG3C="'C48.substrate_temperature.tileX.nc'" export FNVEGC="'C48.vegetation_greenness.tileX.nc'" export FNVETC="'C48.vegetation_type.tileX.nc'" export FNSOTC="'C48.soil_type.tileX.nc'" +export FNSOCC="'C48.soil_color.tileX.nc'" export FNVMNC="'C48.vegetation_greenness.tileX.nc'" export FNVMXC="'C48.vegetation_greenness.tileX.nc'" export FNSLPC="'C48.slope_type.tileX.nc'" diff --git a/tests/tests/cpld_restart_bmark_p8 b/tests/tests/cpld_restart_bmark_p8 index c02b4dde56..1d1ffdff60 100644 --- a/tests/tests/cpld_restart_bmark_p8 +++ b/tests/tests/cpld_restart_bmark_p8 @@ -140,6 +140,7 @@ export FNTG3C="'C384.substrate_temperature.tileX.nc'" export FNVEGC="'C384.vegetation_greenness.tileX.nc'" export FNVETC="'C384.vegetation_type.tileX.nc'" export FNSOTC="'C384.soil_type.tileX.nc'" +export FNSOCC="'C384.soil_color.tileX.nc'" export FNVMNC="'C384.vegetation_greenness.tileX.nc'" export FNVMXC="'C384.vegetation_greenness.tileX.nc'" export FNSLPC="'C384.slope_type.tileX.nc'" diff --git a/tests/tests/cpld_restart_c192_p8 b/tests/tests/cpld_restart_c192_p8 index 3f78c4ede4..d286e3a3a8 100644 --- a/tests/tests/cpld_restart_c192_p8 +++ b/tests/tests/cpld_restart_c192_p8 @@ -129,6 +129,7 @@ export FNTG3C="'C192.substrate_temperature.tileX.nc'" export FNVEGC="'C192.vegetation_greenness.tileX.nc'" export FNVETC="'C192.vegetation_type.tileX.nc'" export FNSOTC="'C192.soil_type.tileX.nc'" +export FNSOCC="'C192.soil_color.tileX.nc'" export FNVMNC="'C192.vegetation_greenness.tileX.nc'" export FNVMXC="'C192.vegetation_greenness.tileX.nc'" export FNSLPC="'C192.slope_type.tileX.nc'" diff --git a/tests/tests/cpld_restart_c48 b/tests/tests/cpld_restart_c48 index afeb07dadf..7e837808f8 100644 --- a/tests/tests/cpld_restart_c48 +++ b/tests/tests/cpld_restart_c48 @@ -127,6 +127,7 @@ export FNTG3C="'C48.substrate_temperature.tileX.nc'" export FNVEGC="'C48.vegetation_greenness.tileX.nc'" export FNVETC="'C48.vegetation_type.tileX.nc'" export FNSOTC="'C48.soil_type.tileX.nc'" +export FNSOCC="'C48.soil_color.tileX.nc'" export FNVMNC="'C48.vegetation_greenness.tileX.nc'" export FNVMXC="'C48.vegetation_greenness.tileX.nc'" export FNSLPC="'C48.slope_type.tileX.nc'" diff --git a/tests/tests/cpld_warmstart_c48 b/tests/tests/cpld_warmstart_c48 index f2db0d69cb..f12b297a70 100644 --- a/tests/tests/cpld_warmstart_c48 +++ b/tests/tests/cpld_warmstart_c48 @@ -124,6 +124,7 @@ export FNTG3C="'C48.substrate_temperature.tileX.nc'" export FNVEGC="'C48.vegetation_greenness.tileX.nc'" export FNVETC="'C48.vegetation_type.tileX.nc'" export FNSOTC="'C48.soil_type.tileX.nc'" +export FNSOCC="'C48.soil_color.tileX.nc'" export FNVMNC="'C48.vegetation_greenness.tileX.nc'" export FNVMXC="'C48.vegetation_greenness.tileX.nc'" export FNSLPC="'C48.slope_type.tileX.nc'" diff --git a/tests/tests/merra2_thompson b/tests/tests/merra2_thompson index cae9a8712d..ba85464afc 100644 --- a/tests/tests/merra2_thompson +++ b/tests/tests/merra2_thompson @@ -79,6 +79,7 @@ export IOPT_STC=3 # P8 export IOPT_SFC=3 export IOPT_TRS=2 +export IOPT_DIAG=2 # FV3 P7 settings export D2_BG_K1=0.20 @@ -132,6 +133,7 @@ export FNTG3C="'C96.substrate_temperature.tileX.nc'" export FNVEGC="'C96.vegetation_greenness.tileX.nc'" export FNVETC="'C96.vegetation_type.tileX.nc'" export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSOCC="'C96.soil_color.tileX.nc'" export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FNVMNC="'C96.vegetation_greenness.tileX.nc'"